How to Disable Gutenberg and Keep the Classic Editor in WordPress
WordPress is one of the best CMS Development Software. From now you will get Gutenberg editor with it. People had a problem working with the Gutenberg Editors. People love to work with the Classic Editor and there are some ways to enable the Classic Editor.
Some Ways to Disable Gutenberg and Keep the Classic Editor in WordPress
1. Install Classic Editor Plugin
2. Disable Gutenberg Editor with programming
Install Classic Editor Plugin
The Simple and easiest way to enable the classic editor is the install Class Editor Plugin. For that, You have to login in Your WordPress admin panel. After that you have to Click on Plugin and Add New Plugins. You can see the Classic Editor in the list and if there are not then you can search this in right side area. Then simply click on Install Now and Activate the Plugin. Now You classic Editor is enable you dont have to do any extra setting.
Disable Gutenberg Editor with programming
We can disable Gutenberg Editor with code easily. For that, You need to Simply add a single line of code in your functions.php. You can find functions.php in Your activated theme and you can edit the functions.php from there.
add_filter('use_block_editor_for_post', '__return_false', 10);