Disable the wincher dashboard widget in Yoast SEO

Disable the wincher dashboard widget in Yoast SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

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');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.