# html-forms/1.7.0/src/admin/class-hcaptcha.php

HTML Forms – Simple WordPress Forms Plugin, version 1.7.0. 20 lines.

- Page: https://pluginprobe.com/plugins/html-forms/1.7.0/code/src/admin/class-hcaptcha.php
- Raw: https://pluginprobe.com/plugins/html-forms/1.7.0/raw/src/admin/class-hcaptcha.php
- Modified: 2026-09-14T13:22:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/html-forms/1.7.0/code/src/admin/class-hcaptcha.php#L10-L20`.

```php
<?php

namespace HTML_Forms\Admin;

class Hcaptcha {
	public function hook() {
        add_filter( 'hf_ignored_field_names', array( $this, 'ignored_fields' ) ) ;
	}

    public function ignored_fields() {
        return array(
            'hcaptcha-widget-id',
            'hcap_fst_token',
            'g-recaptcha-response',
            'h-captcha-response',
            'html_forms_form_nonce',
        );
    }
}

```
