How to remove the RichText Meta Box

Unfortunately, it’s not possible to remove it like a metabox, since it isn’t one.

However, there’s a very easy way to get rid of it for a custom post type. If you don’t define anything for the 'supports' argument in the registration function, your post type will default to

'supports' => array( 'title', 'editor' ),

To stop that, add this to your registration arguments array:

'supports' => array( 'title' ),

Leave a Comment