Skip to content

Instantly share code, notes, and snippets.

@markbosky
Last active February 21, 2022 19:43
Show Gist options
  • Save markbosky/e477c0ffc16b7b26fef3bfd698522237 to your computer and use it in GitHub Desktop.
Save markbosky/e477c0ffc16b7b26fef3bfd698522237 to your computer and use it in GitHub Desktop.
Remove Gutenberg Block Library CSS from loading on the frontend
<?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
wp_dequeue_style( 'storefront-gutenberg-blocks' ); // Storefront theme
}
add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_block_library_css', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment