Tips on Customizing XML Sitemap & Google News

How to Hide the "XML Sitemap" Admin Menu

function plt_hide_xml_sitemap_feed_menus() {
	//Hide the "Settings → XML Sitemap" menu.
	remove_submenu_page('options-general.php', 'xmlsf');
}

add_action('admin_menu', 'plt_hide_xml_sitemap_feed_menus', 11);

Where do I put this code?

How to Hide the "XML Sitemap" Meta Box

function plt_hide_xml_sitemap_feed_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "XML Sitemap" meta box.
	remove_meta_box('xmlsf_section', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_xml_sitemap_feed_metaboxes', 20);