How to Hide the "HTML Sitemap" Admin Menu

function plt_hide_display_html_sitemap_menus() {
	//Hide the "Settings → HTML Sitemap" menu.
	remove_submenu_page('options-general.php', 'html-sitemap');
}

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

Where do I put this code?