Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created January 29, 2013 15:47
Show Gist options
  • Save ekka21/4665225 to your computer and use it in GitHub Desktop.
Save ekka21/4665225 to your computer and use it in GitHub Desktop.
Wordpress: remove wp logo on admin bar in the backend
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