Skip to content

Instantly share code, notes, and snippets.

@pablo-sg-pacheco
Last active July 4, 2016 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pablo-sg-pacheco/fbbfbfdc857abeae59edc66e328cde70 to your computer and use it in GitHub Desktop.
Save pablo-sg-pacheco/fbbfbfdc857abeae59edc66e328cde70 to your computer and use it in GitHub Desktop.
Removes tinymce editor from specific pages
<?php
// removes rich text editor for certain pages
add_action( 'add_meta_boxes', function(){
if(get_the_ID() === 14) {
remove_post_type_support( 'page', 'editor' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment