Skip to content

Instantly share code, notes, and snippets.

@lumpysimon
Last active January 4, 2019 12:11
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 lumpysimon/4ea946d89f6ef5e7d346e2212338f64e to your computer and use it in GitHub Desktop.
Save lumpysimon/4ea946d89f6ef5e7d346e2212338f64e to your computer and use it in GitHub Desktop.
Dequeue the WordPress block editor stylesheet if the Classic Editor plugin is activated and configured
add_action( 'wp_enqueue_scripts', 'simon_dequeue_block_editor_styles' );
function simon_dequeue_block_editor_styles() {
if ( 'classic' === get_option( 'classic-editor-replace' ) ) {
wp_dequeue_style( 'wp-block-library' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment