Displaying Hidden Features In Your WordPress Visual Editor

13 Flares Twitter 6 Facebook 1 Google+ 1 LinkedIn 3 Pin It Share 2 StumbleUpon 0 Buffer 0 Buffer 13 Flares ×

wordpress editorYour WordPress editor by default, doesn’t include some features which you may find useful.

All you need to do to expose the hidden features already included in the WordPress core files by adding some php code to your theme’s functions.php file.

Plugin: You can add more font styles & sizes to your visual editor by simply installing a fonts plugin.

As always, its better to create a child theme for all your custom coding so your customization won’t get overwritten next time you update your parent theme.

Once you’ve added the code you’ll be able to change font types and the size of your fonts on any text you like rather than having to change them on your entire site.

Here’s the extra buttons which are added automatically once you save the code in your themes functions file.

WordPress Visual Editor Extra Features

Here’s the code you can simply copy and paste into your child theme’s custom functions.php file


function add_more_buttons($buttons) {
$buttons[] = 'hr';
$buttons[] = 'del';
$buttons[] = 'sub';
$buttons[] = 'sup';
$buttons[] = 'fontselect';
$buttons[] = 'fontsizeselect';
$buttons[] = 'cleanup';
$buttons[] = 'styleselect';
return $buttons;
}
add_filter("mce_buttons_3", "add_more_buttons");

The hidden buttons add these features to the WordPress visual editor:

  • Insert horitonzal ruler
  • Subscript
  • Superscript
  • Font Family
  • Change Font Size
  • Cleanup messy code
  • Styles – wpgallery & wp oembed

If you don’t want to play around with php code, you can always install the TinyMce plugin which adds all these extra features plus more to your editor.

Did you know these features for your WordPress visual editor where there? 

If i find any more i’ll write about it in upcoming posts.

13 Flares Twitter 6 Facebook 1 Google+ 1 LinkedIn 3 Pin It Share 2 StumbleUpon 0 Buffer 0 Buffer 13 Flares ×
Brad Dalton

Brad Dalton

WordPress Consultant 110+ Hrs/Week, traveler and lover of big surf, making new friends & my family. Read more about Brad Dalton or contact me if you need help with WordPress.
Brad Dalton

@wpsitesdotnet

Howdy! WP Sites creates daily tips & tutorials providing solutions for WordPress users.
Add Featured Image Thumbnail From Post To RSS Feed http://t.co/9s5eMU68A6 - 5 hours ago
Brad Dalton

Never Miss The Latest Design Tips!

Comments

  1. corrado izzo says:

    Hey Brad This is awesome information.

    Thank you so much

    it makes it unnecessary to use tinyMCe or Ck Editor which alwys mess with the code.

    Thanks again :-)

Speak Your Mind

*

Need A Solution for WordPress?

solutions for wordpress
WP Sites offers new posts & 900+ existing tutorials which include:

  1. 1. The basics on using WordPress to build & design a website
  2. 2. Tested PHP & CSS code snippets for easy customization of your theme
  3. 3. Tips, tricks & idea's on how to solve problems with WordPress

 
Enter your email address below & click "Get Updates!"