Skip to content

Instantly share code, notes, and snippets.

@raideus
Created October 18, 2012 18:19
Show Gist options
  • Save raideus/3913900 to your computer and use it in GitHub Desktop.
Save raideus/3913900 to your computer and use it in GitHub Desktop.
Remove WYSIWYG Editor from specified pages
<?php
add_action( 'add_meta_boxes', 'gs_remove_meta_boxes', 10, 2 );
function gs_remove_meta_boxes( $post_type, $post ) {
$pages = array(1, 5, 14);
if ( in_array($post->ID, $pages) ) {
remove_post_type_support( 'page', 'editor' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment