Code-Snippets-Functions/Execute a function on a child site/Rank Math SEO/disable-dashboard-widget.txt

6 lines
239 B
Text

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