Skip to content

Instantly share code, notes, and snippets.

@vlepeule
Created April 25, 2017 10:53
Show Gist options
  • Save vlepeule/c7c06b00fdbc922988cd2a175adacbf8 to your computer and use it in GitHub Desktop.
Save vlepeule/c7c06b00fdbc922988cd2a175adacbf8 to your computer and use it in GitHub Desktop.
Customize wordpress tinymce buttons
<?php
function my_format_TinyMCE( $in ) {
$toolbar_array = explode(',', $in['toolbar1']);
$temp_toolbar_array = array(
$toolbar_array[0],
'underline'
);
$new_toolbar_array = $temp_toolbar_array + array_splice($toolbar_array, 2, -1);
$in['toolbar1'] = implode(',', $new_toolbar_array);
return $in;
}
add_filter( 'tiny_mce_before_init', 'my_format_TinyMCE' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment