# formidable/6.22/classes/views/frm-fields/back-end/html-content.php

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

- Page: https://pluginprobe.com/plugins/formidable/6.22/code/classes/views/frm-fields/back-end/html-content.php
- Raw: https://pluginprobe.com/plugins/formidable/6.22/raw/classes/views/frm-fields/back-end/html-content.php
- Modified: 2024-03-06T15:38: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.22/code/classes/views/frm-fields/back-end/html-content.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<p>
	<label>
		<?php esc_html_e( 'Content', 'formidable' ); ?>
	</label>
	<?php
	$e_args  = array(
		'textarea_name' => 'field_options[description_' . absint( $field['id'] ) . ']',
		'textarea_rows' => 8,
	);
	$html_id = 'frm_description_' . absint( $field['id'] );
	wp_editor( $field['description'], $html_id, $e_args );
	?>
</p>

```
