Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function myplugin_tinymce_buttons( $buttons ) {
  2. //Remove the text color selector
  3. $remove = 'forecolor';
  4.  
  5. //Find the array key and then unset
  6. if ( ( $key = array_search( $remove, $buttons ) ) !== false )
  7. unset( $buttons[$key] );
  8.  
  9. return $buttons;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement