Remove Wordpress logo from admin bar
Just add the below code in the functions.php file of your theme
function remove_wp_logo() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action( 'wp_before_admin_bar_render', 'remove_wp_logo' );
This will remove the Wordpress Logo from the admin bar
adminbar,logo,wordpress
Comments for this post