A tidier admin bar
Removes the WordPress logo menu, the comments bubble and the “+ New” menu from the admin bar. Everything is still in the admin menu.
<?php
add_action(
'admin_bar_menu',
static function ( $bar ) {
$bar->remove_node( 'wp-logo' );
$bar->remove_node( 'comments' );
$bar->remove_node( 'new-content' );
},
999
);
In these packs
- More admin tweaks: Useful columns, a tidier admin bar, a welcome box for clients, and fewer menus for editors.