When you have logined into wordpress admin dashboard, you may find a wordpress logo on the left top. In this tutorial, we will introduce how to remove it.
The wordpress logo likes:
How to remove wordpress logo?
The simplest way is to open your theme functions.php , then copy and paste code below.
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);
Then you will find this wordpress logo is removed.