Wordpress Disable Block Styles

[Solved] Wordpress Disable Block Styles | Php - Code Explorer | yomemimo.com
Question : wordpress disable block styles

Answered by : gtamborero

<?php
//Remove Gutenberg Block Library CSS from loading on the frontend
function smartwp_remove_wp_block_library_css(){ wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); wp_dequeue_style( 'wc-blocks-style' ); // Remove WooCommerce block CSS
}
add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_block_library_css', 100 );

Source : https://smartwp.com/remove-gutenberg-css/ | Last Update : Thu, 02 Jun 22

Answers related to wordpress disable block styles

Code Explorer Popular Question For Php