How to Hide the "Antispam Bee" Admin Menu

function plt_hide_antispam_bee_menus() {
	//Hide the "Settings → Antispam Bee" menu.
	remove_submenu_page('options-general.php', 'antispam_bee');
}

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

Where do I put this code?