Snippet WP: remove the WordPress menu from the top admin bar

A small PHP function by the way which allows you to remove the small WordPress logo from the administration bar, and therefore save a little space at the top of a WordPress blog on the administrator side:

// Remove WP logo and WP dropdown menu from top admin bar
function admin_bar_remove_logo() {

global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action( 'wp_before_admin_bar_render', 'admin_bar_remove_logo', 0 );

To add in your functions.php file or via a WP Code type extension.

Don't miss business advice by email

No spam, just an email when new content is published.

Leave a Reply

Your email address will not be published. Required fields are marked *

Don't miss business advice by email

No spam, just an email when new content is published.

en_USEN