How to Hide the "Intercom Sync" Admin Menu

function plt_hide_highways_sync_for_intercom_menus() {
	//Hide the "Settings → Intercom Sync" menu.
	remove_submenu_page('options-general.php', 'intercom-wp');
}

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

Where do I put this code?