How to Hide the "ALTCHA Anti-spam" Admin Menu

function plt_hide_altcha_spam_protection_menus() {
	//Hide the "Settings → ALTCHA Anti-spam" menu.
	remove_submenu_page('options-general.php', 'altcha_admin');
}

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

Where do I put this code?