Home / Admin / Remove Dashboard Welcome Panel
Duplicate Snippet

Embed Snippet on Your Site

Remove Dashboard Welcome Panel

Hide the Welcome Panel on the WordPress dashboard for all users.

2.1k
Code Preview
php
<?php
add_action(
	'admin_init',
	function () {
		remove_action( 'welcome_panel', 'wp_welcome_panel' );
	}
);

Comments

Add a Comment