How to *disable* the post content editor
I think the best way is remove it and then print the content out of any textarea, but just as html: add_action(‘load-post.php’, ‘read_only_content’); function read_only_content() { if ( ! current_user_can(‘manage_options’) ) { // change the cap with the wanted one $scr = get_current_screen(); remove_post_type_support( $scr->post_type, ‘editor’ ); add_action(‘edit_form_after_editor’, ‘print_the_content’); } } function print_the_content( $post ) … Read more