Created
May 24, 2011 14:54
-
-
Save ChrisLTD/988858 to your computer and use it in GitHub Desktop.
Enable Kitchen Sink in Wordpress TinyMCE by default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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