Created
January 10, 2020 14:36
-
-
Save proweb/765f4da26e2bdcaa70c98b977a35eb6e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
//kill Gutenberg stylesheet | |
function wp_dequeue_gutenberg_styles() { | |
wp_dequeue_style( 'wp-block-library' ); | |
wp_dequeue_style( 'wp-block-library-theme' ); | |
} | |
add_action( 'wp_print_styles', 'wp_dequeue_gutenberg_styles', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment