Disable the dashboard widget in Rank Math SEO

Disable the dashboard widget in Rank Math SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

function remove_rankmath_dashboard_widget() {
    global $wp_meta_boxes;
    unset($wp_meta_boxes['dashboard']['normal']['high']['rank_math_dashboard_widget']);
}

add_action('wp_dashboard_setup', 'remove_rankmath_dashboard_widget', 11 );

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