A cleaner dashboard
Removes the Welcome panel, WordPress Events and News, and Quick Draft from the dashboard.
<?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.