WP_Theme_JSON::get_settings
Returns the existing settings for each block.
Example:
{
'root': {
'color': {
'custom': true
}
},
'core/paragraph': {
'spacing': {
'customPadding': true
}
}
}
Method of the class: WP_Theme_JSON{}
No Hooks.
Returns
Array. Settings per block.
Usage
$WP_Theme_JSON = new WP_Theme_JSON(); $WP_Theme_JSON->get_settings();
Changelog
| Since 5.8.0 | Introduced. |
WP_Theme_JSON::get_settings() WP Theme JSON::get settings code WP 6.8.3
public function get_settings() {
if ( ! isset( $this->theme_json['settings'] ) ) {
return array();
} else {
return $this->theme_json['settings'];
}
}