Skip to content

Instantly share code, notes, and snippets.

@ihorvorotnov
Created September 30, 2015 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihorvorotnov/6e2acd9badecea2b0f77 to your computer and use it in GitHub Desktop.
Save ihorvorotnov/6e2acd9badecea2b0f77 to your computer and use it in GitHub Desktop.
Remove WP.org logo and links from 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