How to Hide the "VAPTCHA" Admin Menu

function plt_hide_vaptcha_menus() {
	//Hide the "Settings → VAPTCHA" menu.
	remove_submenu_page('options-general.php', 'vaptcha');
}

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

Where do I put this code?