Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created May 16, 2022 19:42
Show Gist options
  • Select an option

  • Save nathaningram/01258b29b9af1b1e1b57dbc74fa19dc3 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/01258b29b9af1b1e1b57dbc74fa19dc3 to your computer and use it in GitHub Desktop.
Remove Gridbuilder Icon from TinyMCE
// Removes Gridbuilder icon from TinyMCE
add_filter(
'mce_buttons',
function( $buttons ) {
$key = array_search( 'wpgb', $buttons, true );
unset( $buttons[ $key ] );
return $buttons;
}, 99
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment