Skip to content

Instantly share code, notes, and snippets.

@broskees
Created May 18, 2023 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save broskees/bccc0f2eaa37328cba505d05cce7ec10 to your computer and use it in GitHub Desktop.
Save broskees/bccc0f2eaa37328cba505d05cce7ec10 to your computer and use it in GitHub Desktop.
Remove the WordPress logo from the Admin Bar
<?php
add_action('admin_bar_menu', function ($wp_admin_bar) {
$wp_admin_bar->remove_node('wp-logo');
}, 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment