mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.stackexchange.com/questions/363042/how-to-remove-the-site-health-dashboard-widget https://github.com/WordPress/WordPress/blob/5.4-branch/wp-admin/includes/dashboard.php#L56
5 lines
193 B
Text
5 lines
193 B
Text
add_action('wp_dashboard_setup', 'remove_site_health_dashboard_widget');
|
|
function remove_site_health_dashboard_widget()
|
|
{
|
|
remove_meta_box('dashboard_site_health', 'dashboard', 'normal');
|
|
}
|