wordpress text editor interface
Of those many changes, the biggest change is the writing interface. It switches from the wysiwyg editor to the Gutenberg editor . This change makes many of you unfamiliar and uncomfortable when using it. For that reason, today I would like to share how to bring the old editor back to wordpress .
Method 1: Insert the code into the functions.php file.
An extremely simple way for those of you who like to dig into code. Please insert the following code into the functions.php file of the theme you are using on your website
add_filter('use_block_editor_for_post', '__return_false');
Method 2: Composer plugin for wordpress.
To convert the Gutenberg editor to the wysiwyg editor , wordpress also provides us with a plugin called: Classic Editor , please download and install this plugin!
After successful installation, you can go to admin -> setting -> writing to reinstall the editor as you like!

Conclusion:
After reading this article, you will find it very simple to switch the new writing interface to the old article writing interface in wordpress, right? I recommend that you best insert a piece of code in the function to lighten the website. Avoid installing plugins that make your website load slowly!
Good luck!

