Disable Gutenberg & Enable Classic Editor in WordPress 5.0+

You want to disable Gutenberg and return to the classic editor in WordPress?
Gutenberg
is an editing tool recently introduced in WordPress to replace the classic editor. It has a more dynamic and theoretically more intuitive interface, but many publishers find it much harder to use than the classic editor in WordPress. In addition, if you use an older theme than WordPress What has not been updated to listen to the new Gutenberg editor, it is very possible that you will encounter all kinds of errors. In our case, the publisher Gutenberg on WordPress 5.0 was a real nuisance. It was almost impossible to edit another Draft article. The text could not be fully selected, and as for the alignment on the page, in one paragraph we left the cursor and started writing elsewhere. Strange.
In our opinion, those who write on websites need options that are as simple, intuitive and handy as possible. Gutenberg has not shown us any of these lands so far. Possible in more than 12 years of editing with the classic one, to be an impact of the change.

We are not alone. On the official platform of WordPress download plugins, are highly appreciated those that help quickly disable Gutenberg, while the new feature of WordPress 5.0 has a lot of negative reviews. It is true that most of those who gave a negative score use old WordPress Themes who are not prepared for a dynamic live interface with Gutenberg.

In this article we will show you how to disable Gutenberg in WordPress 5 for the current theme and its return to the classic editing / publishing editor.

First of all, you need to have enough file editing rights functions.php of the current theme (active) or FTP access with editing rights.

open functions.php and add the line:

 add_filter('use_block_editor_for_post', '__return_false'); 

Save the file then go to "Posts”→“Add New". You will notice that the editor Gutenberg he disappeared and was misled with the classic one.
It is the simplest method and does not involve installing any WordPress Plugin. Successfully tested on WordPress 5.0. If it will change in later versions of WordPress, we will return with updates to this article, in which we will show you how it can be deactivated Gutenberg.

If you are using a version of WordPress older than 5.0, add the following line of code to functions.php:

 add_filter('gutenberg_can_edit_post', '__return_false', 5); 

Automatic (developers WordPress) currently recommends a plugin to do this, but I say that the classic editor will not be available until 2021. We will see after that how we can keep the Classic Editor in WordPress. There is also the option of Gutenburg becoming more "friendly" by then.

Passionate about technology, I enjoy writing on StealthSettings.com since 2006. I have a rich experience in operating systems: macOS, Windows, and Linux, as well as in programming languages and blogging platforms (WordPress) and for online stores (WooCommerce, Magento, PrestaShop).

How to » Internet » Disable Gutenberg & Enable Classic Editor in WordPress 5.0+
Leave a Comment