Last active
July 4, 2016 21:05
-
-
Save pablo-sg-pacheco/fbbfbfdc857abeae59edc66e328cde70 to your computer and use it in GitHub Desktop.
Removes tinymce editor from specific pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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