Skip to content

Instantly share code, notes, and snippets.

@stephanieleary
Created October 16, 2016 19:11
Show Gist options
  • Save stephanieleary/55d58dea24d039fca27223704b7b5bd7 to your computer and use it in GitHub Desktop.
Save stephanieleary/55d58dea24d039fca27223704b7b5bd7 to your computer and use it in GitHub Desktop.
Remove WP TinyMCE toolbar buttons
<?php
// Remove the underline and full-justify toolbar buttons
function scl_mce_buttons( $buttons ) {
$remove = array( 'underline', 'alignjustify' );
return array_diff( $buttons, $remove );
}
add_filter( 'mce_buttons_2', 'scl_mce_buttons' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment