Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide the "AI Assistant" Admin Menu

function plt_hide_ai_assistant_by_10web_menus() {
	//Hide the "AI Assistant" menu.
	remove_menu_page('ai_assistant_tenweb');
}

add_action('admin_menu', 'plt_hide_ai_assistant_by_10web_menus', 21);

Where do I put this code?