bradtrivers

add MCE buttons to WordPress

Mar 29th, 2012
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function enable_more_buttons($buttons) {
  2.   $buttons[] = 'hr';
  3.   $buttons[] = 'anchor';
  4.  
  5.   /*
  6.   Repeat with any other buttons you want to add, e.g.
  7.       $buttons[] = 'fontselect';
  8.       $buttons[] = 'sup';
  9.   */
  10.  
  11.   return $buttons;
  12. }
  13. add_filter("mce_buttons", "enable_more_buttons");
Advertisement
Add Comment
Please, Sign In to add comment