Do you want to customize your font style, size, font family? And your WordPress editor doesn’t have those button , so in the post I going to show you how to display more useful button in WordPress editor for you. Without using WordPress plugin you can add the code below to your theme’s function.php
[php]function enable_more_buttons($buttons) {
$buttons[] = ‘hr’;
$buttons[] = ‘sub’;
$buttons[] = ‘sup’;
$buttons[] = ‘fontselect’;
$buttons[] = ‘fontsizeselect’;
$buttons[] = ‘cleanup’;
$buttons[] = ‘styleselect’;
return $buttons;
}
add_filter("mce_buttons_3", "enable_more_buttons");[/php]
Then refresh your WordPress you will see more button on your WordPress editor.
Using Plugin
I you don’t want to add code, I recommend this plugin to you. TinyMCE Advanced, this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar. It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on what buttons are chosen. You just download the plugin and activate.
Download The latest stable version of TinyMCE Advanced.
Comments