mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
13 lines
412 B
Text
13 lines
412 B
Text
add_action( 'admin_menu', 'aioseo_hide_search_stats_menu', 99999 );
|
|
function aioseo_hide_search_stats_menu() {
|
|
global $submenu;
|
|
if ( ! isset( $submenu['index.php'] ) ) {
|
|
return;
|
|
}
|
|
foreach ( $submenu['index.php'] as $index => $props ) {
|
|
if ( ! empty( $props[2] ) && admin_url( '/admin.php?page=aioseo-search-statistics' ) === $props[2] ) {
|
|
unset( $submenu['index.php'][ $index ] );
|
|
return;
|
|
}
|
|
}
|
|
}
|