Created
January 29, 2013 15:47
-
-
Save ekka21/4665225 to your computer and use it in GitHub Desktop.
Wordpress: remove wp logo on admin bar in the backend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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