You really don’t want to get rid of that.
I really want to get rid of it.
There’s huge benefits to that
I know all this from SEO point of view also.
BUT my them have some features to support this option.
add_action(‘init’, ‘my_remove_editor_from_post_type’);
function my_remove_editor_from_post_type() {
remove_post_type_support( ‘page’, ‘editor’ );
}
The bottom of the code where you define which pages you want to remove the capability.
]]>You would put this into a child themes functions.php file
add_action( ‘init’, function() {
remove_post_type_support( ‘post’, ‘editor’ );
remove_post_type_support( ‘page’, ‘editor’ );
}, 99);