Skip to content

Instantly share code, notes, and snippets.

@jarrodagims
Created December 7, 2018 18:57
Show Gist options
  • Save jarrodagims/6aa65354326355f296fc668726ea818a to your computer and use it in GitHub Desktop.
Save jarrodagims/6aa65354326355f296fc668726ea818a to your computer and use it in GitHub Desktop.
disable tiny mce on pages
//disable tinyMCE
//add_filter( 'user_can_richedit' , '__return_false', 50 );
add_filter('user_can_richedit', function( $default ){
global $post;
if( $post->post_type === 'page') return false;
return $default;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment