How To Hide The Visual And Html Editor Completely?

I have some clients that are going to be using wordpress for their sites. I created custom fields for them to input data in so they don’t have to use the editor. How do I hide the page editor completely? I want it completely hidden so they don’t accidentally muck things up. Thanks!

2 Answers
2

For posts:

add_action('init', 'my_custom_init');
function my_custom_init() {
    remove_post_type_support( 'post', 'editor' );
}

See Codex. For custom post types that you register, you can specify what ‘features’ it supports when you register it it use the ‘supports’ arguments.

For custom post types that are not registered by you can use the above with ‘post’ replaced by the custom post type name.

Leave a Comment