Disable Guttenburg editor wordpress
You need to put these code in your functions.php
// Disable Gutenberg From the back end.
add_filter( 'use_block_editor_for_post', '__return_false' );
// Disable Gutenberg From widgets.
add_filter( 'use_widgets_blog_editor', '__return_false' );
add_action( 'wp_enqueue_scripts', function() {
// Remove CSS From the front end.
wp_dequeue_style( 'wp-block-library' );
// Remove Gutenberg From theme.
wp_dequeue_style( 'wp-block-library-theme' );
// Remove inline global CSS From the front end.
wp_dequeue_style( 'global-styles' );
}, 20 );
Comments
Post a Comment