Отключить Theme.json CSS встроенные стили
// REMOVE THEME.JSON
function bk_remove_wp_global_styles(){
wp_dequeue_style( 'global-styles' );
}
add_action( 'wp_enqueue_scripts', 'bk_remove_wp_global_styles', 100 );
gtamborero