How to Hide the "DNS Prefetch" Admin Menu

function plt_hide_dns_prefetch_menus() {
	//Hide the "Settings → DNS Prefetch" menu.
	remove_submenu_page('options-general.php', 'dns-prefetch');
}

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

Where do I put this code?