Skip to content

Instantly share code, notes, and snippets.

@ChrisLTD
Created May 24, 2011 14:54
Show Gist options
  • Save ChrisLTD/988858 to your computer and use it in GitHub Desktop.
Save ChrisLTD/988858 to your computer and use it in GitHub Desktop.
Enable Kitchen Sink in Wordpress TinyMCE by default
function unhide_kitchensink( $args ) {
$args['wordpress_adv_hidden'] = false;
return $args;
}
add_filter( 'tiny_mce_before_init', 'unhide_kitchensink' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment