# formidable/5.2/classes/views/frm-fields/back-end/field-description.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.2/code/classes/views/frm-fields/back-end/field-description.php
- Raw: https://pluginprobe.com/plugins/formidable/5.2/raw/classes/views/frm-fields/back-end/field-description.php
- Modified: 2021-11-17T19:23:10+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/5.2/code/classes/views/frm-fields/back-end/field-description.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<p>
	<label for="frm_description_<?php echo esc_attr( $field['id'] ); ?>">
		<?php esc_html_e( 'Field Description', 'formidable' ); ?>
	</label>
	<textarea name="field_options[description_<?php echo esc_attr( $field['id'] ); ?>]" class="frm_long_input" data-changeme="field_description_<?php echo esc_attr( $field['id'] ); ?>"><?php
		echo FrmAppHelper::esc_textarea( $field['description'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	?></textarea>
</p>

```
