How to Hide Orion SMS OTP Verification Admin Menus

function plt_hide_orion_sms_otp_verification_menus() {
	//Hide the "Orion OTP" menu.
	remove_menu_page('orion_settings_page');
	//Hide the "Orion OTP → Orion OTP" menu.
	remove_submenu_page('orion_settings_page', 'orion_settings_page');
	//Hide the "Orion OTP → Woocommerce Settings" menu.
	remove_submenu_page('orion_settings_page', 'ihs_otp_plugin_woocommerce_settings_page');
}

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

Where do I put this code?