If you prefer using the classic WordPress editor instead of the Gutenberg block editor, you can disable Gutenberg completely.
Steps
- Open your WordPress theme
functions.phpfile. - Add the code below at the end of the file.
- Save the file.
- Refresh the post editor page.
Done — WordPress will use the Classic Editor instead of Gutenberg.
⚠️ Some modern plugins and themes require Gutenberg features. Test your website after disabling it.
add_filter('use_block_editor_for_post', '__return_false');