How can I remove the Rich Text box editor in wordpres. I have used remove_meta_box function and specifying the boxes ID but i does not work like it does for other core meta boxes:
The code i tried:
function remove_rich_box()
{
remove_meta_box('postdivrich', 'client', 'normal');
}
add_action( 'do_meta_boxes', 'remove_rich_box' );
Where the second paratmeter "client" is my custom post type
