Skip to content

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

A cleaner dashboard

Removes the Welcome panel, WordPress Events and News, and Quick Draft from the dashboard.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Tested with WordPress 7.1
PHP
<?php

add_action(
	'wp_dashboard_setup',
	static function () {
		remove_action( 'welcome_panel', 'wp_welcome_panel' );
		remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );     // WordPress Events and News.
		remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); // Quick Draft.
	},
	100
);

In these packs

  • Admin and login: Your branding on the login page, a tidier admin, and handy extras such as duplicating posts.

Move your snippets over this afternoon.

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