How to Hide the "Google Analytics / Google Tag Manager" Admin Menu

function plt_hide_simple_analytics_and_tag_manager_integration_for_google_menus() {
	//Hide the "Settings → Google Analytics / Google Tag Manager" menu.
	remove_submenu_page('options-general.php', 'google-analytics-tagmanager-integration');
}

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

Where do I put this code?