Learn how to easily disable the Gutenberg editor and switch back to the Classic Editor in your WordPress site.
add_filter('gutenberg_can_edit_post', '__return_false', 5);
add_filter('use_block_editor_for_post', '__return_false', 5);
Learn how to easily disable the Gutenberg editor and switch back to the Classic Editor in your WordPress site.
add_filter('gutenberg_can_edit_post', '__return_false', 5);
add_filter('use_block_editor_for_post', '__return_false', 5);