Created
December 4, 2015 17:14
-
-
Save mauriciogofas/057bb5f32f1db7aa0b11 to your computer and use it in GitHub Desktop.
remove wp logo Admin Toolbar
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
// remove wp logo Admin Toolbar | |
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 ); | |
function remove_wp_logo( $wp_admin_bar ) { | |
$wp_admin_bar->remove_node( 'wp-logo' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment