Skip to content

Instantly share code, notes, and snippets.

@mustardBees
Created August 18, 2014 09: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 mustardBees/2e254c3c0547e844ce67 to your computer and use it in GitHub Desktop.
Save mustardBees/2e254c3c0547e844ce67 to your computer and use it in GitHub Desktop.
Remove text colour button from editor
<?php
/**
* Remove text colour button from editor
*/
function iweb_remove_text_colour_button( $buttons ) {
if ( ( $key = array_search( 'forecolor', $buttons ) ) !== false ) {
unset( $buttons[$key] );
}
return $buttons;
}
add_filter( 'mce_buttons_2', 'iweb_remove_text_colour_button' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment