File "html-content.php"
Full Path: /home/adniftyx/public_html/wp-content/plugins/formidable/classes/views/frm-fields/back-end/html-content.php
File size: 433 bytes
MIME-type: text/x-php
Charset: utf-8
<?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' => 7,
);
$html_id = 'frm_description_' . absint( $field['id'] );
wp_editor( $field['description'], $html_id, $e_args );
?>
</p>