Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Lego2012/637039a1ac3ba12a3b3f937043c16dc1 to your computer and use it in GitHub Desktop.
Save Lego2012/637039a1ac3ba12a3b3f937043c16dc1 to your computer and use it in GitHub Desktop.

Just a quick one that will disable the editor on ALL pages and posts, handy if you only use custom fields.

<?php
// Remove the editor from ALL pages and posts
function disable_editor_on_all_pages_and_posts() {
  remove_post_type_support( 'page', 'editor' );
  remove_post_type_support( 'post', 'editor' );
}
add_action( 'admin_init', 'disable_editor_on_all_pages_and_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment