Skip to content

Instantly share code, notes, and snippets.

@corenominal
Last active December 7, 2016 15:07
Show Gist options
  • Save corenominal/70e4f72b1f28974f8ca96119081742fb to your computer and use it in GitHub Desktop.
Save corenominal/70e4f72b1f28974f8ca96119081742fb to your computer and use it in GitHub Desktop.
Remove buttons from the WordPress TinyMCE editor to make a simpler interface
<?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