How to Hide the "Similar Posts AI" Admin Menu

function plt_hide_similar_posts_ai_spai_menus() {
	//Hide the "Settings → Similar Posts AI" menu.
	remove_submenu_page('options-general.php', 'spai');
}

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

Where do I put this code?