How to Hide the "LLMs.txt" Admin Menu

function plt_hide_website_llms_txt_menus() {
	//Hide the "LLMs.txt" menu.
	remove_menu_page('llms-file-manager');
}

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

Where do I put this code?