Add the code snippet below into your functions.php file to hide the default WordPress content meta box.
1 2 3 4 5 6 7 | add_action( 'init', function() { // remove_post_type_support( 'post', 'editor' ); remove_post_type_support( 'page', 'editor' ); }, 99); |