How to Hide the "HyToLat" Admin Menu

function plt_hide_hytolat_menus() {
	//Hide the "Settings → HyToLat" menu.
	remove_submenu_page('options-general.php', 'hytolat/hytolat.php');
}

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

Where do I put this code?