Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Created December 4, 2015 17:14
Show Gist options
  • Save mauriciogofas/057bb5f32f1db7aa0b11 to your computer and use it in GitHub Desktop.
Save mauriciogofas/057bb5f32f1db7aa0b11 to your computer and use it in GitHub Desktop.
remove wp logo Admin Toolbar
// 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