How to Hide the "CF7 to GA" Admin Menu

function plt_hide_cf7_google_analytics_menus() {
	//Hide the "Settings → CF7 to GA" menu.
	remove_submenu_page('options-general.php', 'cf7_ga');
}

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

Where do I put this code?