You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If you remove the kitchen sink button consider also adding: https://github.com/emersonthis/wordpress-snippets/blob/master/remove-second-row-tinymce-btns
*/
function myplugin_tinymce_buttons($buttons)
{
# Remove the kitchen sink button
$remove = array('wp_adv');
//To change other buttons, look at the button class names and remove the "mce-i-" prefix
# Find the array key and then unset
return array_diff($buttons,$remove);
}
add_filter('mce_buttons','myplugin_tinymce_buttons'); // this is the top row