Created
February 17, 2022 16:21
-
-
Save vietrick/3e093ff657bb462cbda564e098736452 to your computer and use it in GitHub Desktop.
Fully disable Gutenberg
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
// Fully Disable Gutenberg editor. | |
add_filter('use_block_editor_for_post_type', '__return_false', 10); | |
// Don't load Gutenberg-related stylesheets. | |
add_action( 'wp_enqueue_scripts', 'vietrick_remove_block_css', 100 ); | |
function vietrick_remove_block_css() { | |
wp_dequeue_style( 'wp-block-library' ); // Wordpress core | |
wp_dequeue_style( 'wp-block-library-theme' ); // Wordpress core | |
wp_dequeue_style( 'wc-block-style' ); // WooCommerce Block | |
wp_dequeue_style( 'storefront-gutenberg-blocks' ); // Storefront theme | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment