WP_Theme_JSON_Data::__construct( array $data = array(‘version’ => WP_Theme_JSON::LATEST_SCHEMA), string $origin = ‘theme’ )

In this article

Constructor.

Parameters

$dataarrayoptional
Array following the theme.json specification.

Default:array('version' => WP_Theme_JSON::LATEST_SCHEMA)

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

Default:'theme'

Source

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

Changelog

VersionDescription
6.1.0Introduced.

User Contributed Notes

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