Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active January 29, 2017 02:17
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 jpmarchand/546df9e9aea0b01d790c to your computer and use it in GitHub Desktop.
Save jpmarchand/546df9e9aea0b01d790c to your computer and use it in GitHub Desktop.
Disable visual and HTML editor in WordPress. Source: http://codex.wordpress.org/Function_Reference/remove_post_type_support
<?php
//* Disable visual and HTML editor in WordPress
function customprefix_remove_editor_from_post_type() {
remove_post_type_support('post', 'editor');
}
add_action('init', 'customprefix_remove_editor_from_post_type');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment