Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active June 10, 2022 21:01
Show Gist options
  • Save lukecav/fb1f6f6721679aed17e0f0ad2bf9449d to your computer and use it in GitHub Desktop.
Save lukecav/fb1f6f6721679aed17e0f0ad2bf9449d to your computer and use it in GitHub Desktop.
Remove UpdraftPlus plugin from the admin bar
function updraftplus_remove_toolbar_menu() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('updraft_admin_node');
}
add_action('wp_before_admin_bar_render', 'updraftplus_remove_toolbar_menu', 999);
@lukecav
Copy link
Author

lukecav commented Jun 10, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment