Skip to content

Instantly share code, notes, and snippets.

@proweb
Created January 10, 2020 14:36
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 proweb/765f4da26e2bdcaa70c98b977a35eb6e to your computer and use it in GitHub Desktop.
Save proweb/765f4da26e2bdcaa70c98b977a35eb6e to your computer and use it in GitHub Desktop.
//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