-
Home
-
XML Sitemap Generator for Google
- Tips
How to Hide the "XML Sitemap" Admin Menu
function plt_hide_www_xml_sitemap_generator_org_menus() {
//Hide the "Settings → XML Sitemap" menu.
remove_submenu_page('options-general.php', 'www-xml-sitemap-generator-org');
}
add_action('admin_menu', 'plt_hide_www_xml_sitemap_generator_org_menus', 11);
Where do I put this code?
How to Hide the "XML Sitemap" Meta Box
function plt_hide_www_xml_sitemap_generator_org_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "XML Sitemap" meta box.
remove_meta_box('wpXSG-meta', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_www_xml_sitemap_generator_org_metaboxes', 20);