Back

Remove Editor from Some Pages WordPress

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

// Hide Editor on Some Pages add_action( 'admin_init', 'hide_editor' ); function hide_editor() { $post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ; if( !isset( $post_id ) ) return; $pagesArr=array( '9', // AboutUs '63' // ContactUs ); if(in_array($post_id,$pagesArr)){ remove_post_type_support('page', 'editor'); } }