Last active
December 7, 2016 15:07
-
-
Save corenominal/70e4f72b1f28974f8ca96119081742fb to your computer and use it in GitHub Desktop.
Remove buttons from the WordPress TinyMCE editor to make a simpler interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Remove buttons from TinyMCE to make a simpler interface | |
function simpler_tinymce_buttons( $buttons ) | |
{ | |
$remove = array( | |
'aligncenter', | |
'alignright', | |
'alignleft', | |
'hr', | |
'wp_more', | |
'strikethrough', | |
'wp_adv' | |
); | |
return array_diff( $buttons, $remove ); | |
} | |
add_filter( 'mce_buttons', 'simpler_tinymce_buttons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment