| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<p> |
| 7 |
<label> |
| 8 |
<?php esc_html_e( 'Content', 'formidable' ); ?> |
| 9 |
</label> |
| 10 |
<?php |
| 11 |
$e_args = array( |
| 12 |
'textarea_name' => 'field_options[description_' . absint( $field['id'] ) . ']', |
| 13 |
'textarea_rows' => 7, |
| 14 |
); |
| 15 |
$html_id = 'frm_description_' . absint( $field['id'] ); |
| 16 |
wp_editor( $field['description'], $html_id, $e_args ); |
| 17 |
?> |
| 18 |
</p> |
| 19 |
|