Skip to content

Instantly share code, notes, and snippets.

@dionysia
Created July 30, 2012 07:22
Show Gist options
  • Save dionysia/3205491 to your computer and use it in GitHub Desktop.
Save dionysia/3205491 to your computer and use it in GitHub Desktop.
More Visual Editor buttons in Wordpress Tiny MCE
//Add the following to functions.php
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");
@dionysia
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment