How to Hide the "Cloudflare Edge Caching Options" Admin Menu

function plt_hide_edge_cache_html_cloudflare_workers_menus() {
	//Hide the "Plugins → Cloudflare Edge Caching Options" menu.
	remove_submenu_page('plugins.php', 'cf_caching_options');
}

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

Where do I put this code?