How to Hide the "All In One Captcha" Admin Menu

function plt_hide_all_in_one_captcha_menus() {
	//Hide the "Settings → All In One Captcha" menu.
	remove_submenu_page('options-general.php', 'aioc-options');
}

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

Where do I put this code?