Skip to content

Instantly share code, notes, and snippets.

@marioloncarek
Created May 20, 2020 18:53
Show Gist options
  • Select an option

  • Save marioloncarek/228f2fc8c1db026bd1af64c9316aea45 to your computer and use it in GitHub Desktop.

Select an option

Save marioloncarek/228f2fc8c1db026bd1af64c9316aea45 to your computer and use it in GitHub Desktop.
/**
* Remove Gutenberg Block Library CSS from loading on the frontend
*/
function 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', 'remove_wp_block_library_css', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment