19 lines
479 B
PHP
19 lines
479 B
PHP
|
<?php
|
||
|
|
||
|
/* Remove default CSS variables that come with Wordpress
|
||
|
https://github.com/WordPress/gutenberg/issues/56180#issuecomment-1819222376
|
||
|
*/
|
||
|
function custom_wp_theme_json_default( $theme_json ) {
|
||
|
$new_data = array(
|
||
|
'version' => 2,
|
||
|
'settings' => array(
|
||
|
'color' => array(
|
||
|
'palette' => array(),
|
||
|
'gradient' => array(),
|
||
|
)
|
||
|
),
|
||
|
);
|
||
|
return $theme_json->update_with( $new_data );
|
||
|
}
|
||
|
add_filter( 'wp_theme_json_data_default', 'custom_wp_theme_json_default' );
|