Skip to content

Early-bird lifetime licence: $199 once, for the first 200 buyers only. See the offer

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.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Category Admin area
  • Tested with WordPress 7.1
PHP
<?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.

Move your snippets over this afternoon.

Importing changes nothing until you switch over, and your old shortcodes keep working.