Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pablocattaneo/3e719869e5a68acc621f to your computer and use it in GitHub Desktop.
Save pablocattaneo/3e719869e5a68acc621f to your computer and use it in GitHub Desktop.
Remove de main content editor for a specific page in Wordpress
function remove_editor() {
if (isset($_GET['post'])) {
$id = $_GET['post'];
$template = get_post_meta($id, '_wp_page_template', true);
if($template == 'template_name.php'){
remove_post_type_support( 'page', 'editor' );
}
}
}
add_action('init', 'remove_editor');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment