in , ,

Display Useful Button In WordPress Editor

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.

What do you think?

Written by Sopheap

The goal of me is sharing new ideas, inspiration art, fresh and useful resource, covering web design and development, graphic design, advertising, mobile development and life style.

Comments

Leave a Reply

Your email address will not be published.

human readable time

Display Human Readable Time In WordPress

create widge area in wordpress

Create Widget Area For Your WordPress