Answers for "disable theme.json css inline styles"

CSS
0

disable theme.json css inline styles

// 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 );
Posted by: Guest on April-09-2022

Browse Popular Code Answers by Language