Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 05:49
Show Gist options
  • Save spencejs/5219252 to your computer and use it in GitHub Desktop.
Save spencejs/5219252 to your computer and use it in GitHub Desktop.
Show Kitchen Sink As Default In TinyMCE For Wordpress
//Show Kitchen Sink As Default In TinyMCE
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