How to Remove the Welcome Widget from the WordPress Dashboard

The Welcome Widget in WordPress refers to a small panel on the dashboard that provides quick links to help users get started with their site. It usually appears at the top of the WordPress admin dashboard when users log in. This code removes the Welcome Panel from the WordPress dashboard.

Copy the code snippet provided in this post. You can add it to the functions.php file of your WordPress child theme, or you can use a plugin like Code Snippets to easily add and activate the code .

function ts_remove_dashboard_widgets() {
    
// Remove the WordPress version Welcome Panel
remove_action('welcome_panel', 'wp_welcome_panel');

}
add_action('wp_dashboard_setup', 'ts_remove_dashboard_widgets');