Created
January 5, 2021 11:38
-
-
Save the-sufi/0dfe0107c6596080c10ecc709952be29 to your computer and use it in GitHub Desktop.
Remove Gutenberg Block Library CSS from loading on the frontend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Remove Gutenberg Block Library CSS from loading on the frontend | |
*/ | |
function dctit_remove_wp_block_library_css(){ | |
wp_dequeue_style( 'wp-block-library' ); | |
wp_dequeue_style( 'wp-block-library-theme' ); | |
wp_dequeue_style( 'wc-block-style' ); // Remove WooCommerce block CSS | |
} | |
add_action( 'wp_enqueue_scripts', 'dctit_remove_wp_block_library_css', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment