Remove Dashboard Welcome Panel
Hides the default Welcome to WordPress panel shown at the top of the dashboard for all users.
PHPby SnipCraft
php
<?php
add_action( 'wp_dashboard_setup', 'scseed_remove_welcome_panel' );
function scseed_remove_welcome_panel() {
remove_action( 'welcome_panel', 'wp_welcome_panel' );
}#admin#cleanup#dashboard#widgets