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 );
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 );