How to Hide the "AI WP Writer" Admin Menu

function plt_hide_ai_wp_writer_menus() {
	//Hide the "AI WP Writer" menu.
	remove_menu_page('wpai-assistant');
}

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

Where do I put this code?