Skip to content

Instantly share code, notes, and snippets.

@BryanBarrera
Last active April 22, 2016 17:19
Show Gist options
  • Select an option

  • Save BryanBarrera/bbb8d22f32340342b222 to your computer and use it in GitHub Desktop.

Select an option

Save BryanBarrera/bbb8d22f32340342b222 to your computer and use it in GitHub Desktop.
Remove the Wordpress Logo from the Admin Bar
<?php
/*
This removes the Wordpress Logo from the admin dashboard
Add this snippet to the functions.php file within your theme
*/
function remove_wordpress_logo() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action('wp_before_admin_bar_render', 'remove_wordpress_logo', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment