mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
6 lines
239 B
Text
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 );
|