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.
php | |
| <?php
|
| add_action(
|
| 'admin_init',
|
| function () {
|
| remove_action( 'welcome_panel', 'wp_welcome_panel' );
|
| }
|
| );
|
|
|
| |
| |
Comments