Get back the Wordpress Classic editor, and disable Guternburg in one line
I really don’t like the Guternburg editor that Wordpress introduced in version 5, and I am certainly not alone. Suprisngly, not many people know how easy it is to revert to the old version, with simply one line of code. Here is a step by step guide on how to do it. I will be guiding you through using the Wordpress client to do it, as that is easier for more people, but for more advanced users it’s best to do it via FTP.
- Hover over
Appearance
, and thenEditor
. - Select
functions.php
from the right pane (see final image). - Go to the bottom of the file, and add this line:
add_filter('use_block_editor_for_post', '__return_false');
. - Save the file, clear your cache, and enjoy editing again.
It’s that easy. I also added a comment above mine, so I know what the line is for.
As a note, if your theme is updated often, you may want to look at using a child theme so your changes are still in place every time you update the theme.
If you have any questions or need any help, please feel free to comment below!