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
| Version | Description |
|---|---|
| 6.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.