This snippet removes the WordPress icon link from the Admin bar. The icon serves no useful purpose.
/*----------------------------------------------------------*/
/* Remove WordPress Icon on Admin bar
/*----------------------------------------------------------*/
add_action( 'wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}, 7 );
Code language: PHP (php)