Skip to content

Instantly share code, notes, and snippets.

@dospuntocero
Created September 9, 2018 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dospuntocero/651be21d83efeeeda78687d72c59c7b8 to your computer and use it in GitHub Desktop.
Save dospuntocero/651be21d83efeeeda78687d72c59c7b8 to your computer and use it in GitHub Desktop.
remove plain editor from wordpress waiting for guttenberg support on pages
function hide_editor() {
remove_post_type_support('page', 'editor');
}
add_action( 'admin_init', 'hide_editor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment