delarge
10/10/2016 - 9:02 PM

Remove specific buttons from WP tinymce editor http://scottnelle.com/662/remove-specific-tinymce-item-wordpress-editor/

Remove specific buttons from WP tinymce editor http://scottnelle.com/662/remove-specific-tinymce-item-wordpress-editor/

function my_mce_buttons_2( $buttons ) {
	$index = array_search( 'underline', $buttons );
	if ( $index !== false ) { unset( $buttons[$index] ); }

	return $buttons;
}
add_filter( 'mce_buttons_2', 'my_mce_buttons_2' );