In this post i will explain how to remove WordPress logo from admin bar. Brand your website as per your logo color combination and want to remove wordpress admin logo from admin panel, then use below codes snippets in your functions.php file.
Open your current theme file and add this code to your functions.php file to remove the WordPress logo from admin bar.
1 2 3 4 5 6 7 8 9 |
function annointed_admin_bar_remove() { global $wp_admin_bar; /* Remove their stuff */ $wp_admin_bar->remove_menu('wp-logo'); } add_action('wp_before_admin_bar_render', 'annointed_admin_bar_remove', 0); |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: remove admin logo, Remove WordPress logo, wordpress, wordpress admin logo, wordpress remove admin bar logo