-
Home
-
Geolocation
- Tips
How to Hide the "Geolocation" Admin Menu
function plt_hide_geolocation_menus() {
//Hide the "Settings → Geolocation" menu.
remove_submenu_page('options-general.php', 'geolocation.php');
}
add_action('admin_menu', 'plt_hide_geolocation_menus', 11);
Where do I put this code?
How to Hide the "Geolocation" Meta Box
function plt_hide_geolocation_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Geolocation" meta box.
remove_meta_box('geolocation_sectionid', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_geolocation_metaboxes', 20);