How to Hide the "Ometrics Ochatbot" Admin Menu

function plt_hide_ochatbot_and_ometrics_conversion_optimization_tools_menus() {
	//Hide the "Settings → Ometrics Ochatbot" menu.
	remove_submenu_page('options-general.php', 'wp-ometrics');
}

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

Where do I put this code?