Show the WordPress Kitchen Sink Options on the Editor by Default

Show the WordPress Kitchen Sink Options on the Editor by Default


If you have clients who use WordPress, or you have users on a site or a network that you control, then as the go-to person for all their questions, no doubt you’ve answered a fair share by starting with, “Now at the top of editor screen, all the way over to the right, there’s a funny looking button that looks like … well, I don’t what it what it looks like, but it’s the last button on the right. Do you see that?”

Of course you’re trying to get them to the “kitchen sink,” the second row of options on the editor that lets them do very important things like put in headings, underlines, colors, get to the Microsoft Word button (a BIG one), etc.

All these options are pretty self-explanatory, but many users don’t know this row of options exists. If they did, they wouldn’t have to bother you.

Show the Kitchen Sink by Default

If you would like to show that second row of options by default, there’s an easy way. Simply put the following into your theme’s functions.php file (Appearance > Edit > Theme Functions – functions.php):

FREE EBOOK
Your step-by-step roadmap to a profitable web dev business. From landing more clients to scaling like crazy.

By downloading this ebook I consent to occasionally receive emails from WPMU DEV.
We keep your email 100% private and do not spam.

FREE EBOOK
Plan, build, and launch your next WP site without a hitch. Our checklist makes the process easy and repeatable.

By downloading this ebook I consent to occasionally receive emails from WPMU DEV.
We keep your email 100% private and do not spam.

function unhide_kitchensink( $args ) {
$args['wordpress_adv_hidden'] = false;
return $args;
}
add_filter( 'tiny_mce_before_init', 'unhide_kitchensink' );

If you would like to make this into a simple little plugin, then see this post about making your own personal plugins from function file code.

Photo: Modern Kitchen – Happy Woman Washing Dishes from BigStock

Tags: