Remove WordPress Logo from Admin Bar

,

In some cases you may want a slightly more personal backend experience. Here is a snippet you can use to remove the WordPress logo from the admin backend header area.

 

Simply add this code to the “functions.php” file within your child theme.

 

REVEAL CODE

/*
** Remove WP Logo from Admin Bar
*/
add_action( 'wp_before_admin_bar_render', 'annointed_admin_bar_remove', 0 );
function annointed_admin_bar_remove()
{

    global $wp_admin_bar;
    $wp_admin_bar->remove_menu( 'wp-logo' );
}

 

We hope this article has helped you remove the WordPress logo from your admin login page. If this was helpful please take a moment to like us on Facebook, share this on your social media or buy us a cup of coffee.