Quantcast
Channel: Altschuler
Viewing all articles
Browse latest Browse all 60

How to remove the WordPress logo from the toolbar

$
0
0

To remove the WordPress logo from the admin bar, add the following code to your functions.php file:

function remove_wp_logo( $wp_admin_bar ) {
	$wp_admin_bar->remove_node( 'wp-logo' );
}
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );

 


Viewing all articles
Browse latest Browse all 60

Trending Articles