How to Hide the "CodeWP Helper" Admin Menu

function plt_hide_ai_for_wp_menus() {
	//Hide the "Settings → CodeWP Helper" menu.
	remove_submenu_page('options-general.php', 'ai-for-wp');
}

add_action('admin_menu', 'plt_hide_ai_for_wp_menus', 101);

Where do I put this code?