Last active
June 24, 2019 15:33
-
-
Save brianpurkiss/946fd3730df858a194c06eb5faa2690f to your computer and use it in GitHub Desktop.
Dequeue the Boostrap Block Styles
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 | |
// 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