Skip to content

Instantly share code, notes, and snippets.

@itsHall
Last active October 7, 2021 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsHall/42ae8c2551c4f34540e54757aae11bde to your computer and use it in GitHub Desktop.
Save itsHall/42ae8c2551c4f34540e54757aae11bde to your computer and use it in GitHub Desktop.
Remove Gutenberg Block Library CSS from loading on the frontend
<?php
function mpc_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', 'mpc_remove_wp_block_library_css', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment