How to Hide the "Kubik AI LLM Content Generator" Admin Menu

function plt_hide_kubik_ai_llm_content_generator_md_llms_txt_menus() {
	//Hide the "Settings → Kubik AI LLM Content Generator" menu.
	remove_submenu_page('options-general.php', 'kubik-ai-llm-content-generator-md-llms-txt');
}

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

Where do I put this code?