Skip to content

Instantly share code, notes, and snippets.

@brianpurkiss
Last active June 24, 2019 15:33
Show Gist options
  • Save brianpurkiss/946fd3730df858a194c06eb5faa2690f to your computer and use it in GitHub Desktop.
Save brianpurkiss/946fd3730df858a194c06eb5faa2690f to your computer and use it in GitHub Desktop.
Dequeue the Boostrap Block Styles
<?php
// Dequeue the Boostrap Block Styles
// The one stylesheet should be compiled with a preprocessor
function dequeue_dequeue_plugin_style(){
wp_dequeue_style( 'wp-bootstrap-blocks-styles' ); //Name of Style ID.
}
add_action( 'wp_enqueue_scripts', 'dequeue_dequeue_plugin_style', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment