Code-Snippets-Functions/Execute a function on a child site/Yoast SEO/disable-wincher-dashboard-widget.txt
2023-06-27 09:30:57 -06:00

4 lines
208 B
Text

function remove_wpseo_wincher_dashboard_widget() {
remove_meta_box('wpseo-wincher-dashboard-overview', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'remove_wpseo_wincher_dashboard_widget');