ControlledChaos
11/8/2016 - 5:46 PM

Removes the WordPress logo from the admin toolbar.

Removes the WordPress logo from the admin toolbar.

<?php

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

?>

Remove WP Admin Toolbar Logo

WordPress Snippet