[ad_1]
Hi there,
Thanks for reaching out.
If you want to disable the default Gutenberg editor in WordPress, use for instance this plugin: Classic Editor.
I hope that helps.
@farroyob I use code to disable the default Gutenberg editor
add_filter('use_block_editor_for_post', '__return_false');
add_filter('use_widgets_block_editor', '__return_false');
I tried it and it work
