Snippi
A super awesome snippet tool.
- 1.
add_action( 'add_meta_boxes', 'hhs_add_meta_boxes', 10, 2 ); - 2.
function hhs_add_meta_boxes( $post_type, $post ) { - 3.
$posts_page = get_option( 'page_for_posts' ); - 4.
- 5.
if ( $post->ID === $posts_page ) { - 6.
// remove the editor - 7.
remove_post_type_support( 'page', 'editor' ); - 8.
} - 9.
}