Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nguyenvanduocit/5819961 to your computer and use it in GitHub Desktop.
Save nguyenvanduocit/5819961 to your computer and use it in GitHub Desktop.
Disable WYSIWYG Editor For Custom Post Types If you need to make sure that your custom post type doesn’t have the ‘visual’ tab, you can easily diable it.
add_filter( 'user_can_richedit', 'disable_for_cpt' );
function disable_for_cpt( $default ) {
global $post;
if ( 'movie' == get_post_type( $post ) )
return false;
return $default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment