Skip to content

Instantly share code, notes, and snippets.

@abelsaad
Created January 14, 2021 08:51
Show Gist options
  • Save abelsaad/ce8585c5807deb656574045b3cdcd340 to your computer and use it in GitHub Desktop.
Save abelsaad/ce8585c5807deb656574045b3cdcd340 to your computer and use it in GitHub Desktop.
Remove the WP Logo from the Toolbar
<?php
function remove_wp_logo( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'wp-logo' );
}
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment