Constructor.
Parameters
$data
arrayoptional- Array following the theme.json specification.
Default:
array('version' => WP_Theme_JSON::LATEST_SCHEMA)
$origin
stringoptional- 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
Version | Description |
---|---|
6.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.