Skip to content

Instantly share code, notes, and snippets.

@tiberiur
Created April 13, 2016 12:00
Show Gist options
  • Save tiberiur/3558392d89bdfea1801be0024be42199 to your computer and use it in GitHub Desktop.
Save tiberiur/3558392d89bdfea1801be0024be42199 to your computer and use it in GitHub Desktop.
[WP] Remove default editor
function remove_wysiwyg()
{
remove_post_type_support('page', 'editor');
}
add_action('init', 'remove_wysiwyg', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment