How to Hide the "Pluggix AltGen AI" Admin Menu

function plt_hide_pluggix_altgen_ai_menus() {
	//Hide the "Pluggix AltGen AI" menu.
	remove_menu_page('pluggix-altgen-ai');
}

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

Where do I put this code?