Skip to content

Instantly share code, notes, and snippets.

@jillmugge
Created April 22, 2014 14:38
Show Gist options
  • Save jillmugge/11181720 to your computer and use it in GitHub Desktop.
Save jillmugge/11181720 to your computer and use it in GitHub Desktop.
Add buttons to MCE
<?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");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment