Last active
April 22, 2016 17:19
-
-
Save BryanBarrera/bbb8d22f32340342b222 to your computer and use it in GitHub Desktop.
Remove the Wordpress Logo from the Admin Bar
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
| <?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