# formidable/6.9/classes/views/frm-fields/back-end/field-hidden.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.9. 10 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.9/code/classes/views/frm-fields/back-end/field-hidden.php
- Raw: https://pluginprobe.com/plugins/formidable/6.9/raw/classes/views/frm-fields/back-end/field-hidden.php
- Modified: 2020-12-07T20:56:38+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/formidable/6.9/code/classes/views/frm-fields/back-end/field-hidden.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<input type="text" id="<?php echo esc_attr( $html_id ); ?>" name="<?php echo esc_attr( $field_name ); ?>" value="<?php echo esc_attr( $field['default_value'] ); ?>" class="dyn_default_value" />
<p class="howto frm_clear">
	<?php esc_html_e( 'Note: This field will not show in the form. Enter the value to be hidden.', 'formidable' ); ?>
</p>

```
