Skip to content

Instantly share code, notes, and snippets.

@raewrites
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raewrites/85459afcd564304b1a89 to your computer and use it in GitHub Desktop.
Save raewrites/85459afcd564304b1a89 to your computer and use it in GitHub Desktop.
function enable_more_buttons($buttons) {
$buttons[] = 'fontselect';
$buttons[] = 'fontsizeselect';
$buttons[] = 'styleselect';
$buttons[] = 'backcolor';
$buttons[] = 'newdocument';
$buttons[] = 'cut';
$buttons[] = 'copy';
$buttons[] = 'charmap';
$buttons[] = 'hr';
$buttons[] = 'visualaid';
return $buttons;
}
add_filter("mce_buttons_3", "enable_more_buttons");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment