WP_Theme_JSON_Data::__construct( array $data = array(), string $origin = 'theme' )

Constructor.


Parameters

$data array Optional
Array following the theme.json specification.

Default: array()

$origin string Optional
The origin of the data: default, theme, user.

Default: 'theme'


Top ↑

Source

File: wp-includes/class-wp-theme-json-data.php. View all references

public function __construct( $data = array(), $origin = 'theme' ) {
	$this->origin     = $origin;
	$this->theme_json = new WP_Theme_JSON( $data, $this->origin );
}


Top ↑

Changelog

Changelog
Version Description
6.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.