Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * @author wpWax
- * @since 6.6
- * @version 6.7
- */
- if ( ! defined( 'ABSPATH' ) ) exit;
- $max = !empty( $data['rows'] ) ? 'maxlength="'. esc_attr( $data['rows'] * 70 ) .'"' : '';
- ?>
- <div class="directorist-form-group directorist-custom-field-textarea">
- <?php $listing_form->field_label_template( $data );?>
- <textarea <?php echo $max; ?> name="<?php echo esc_attr( $data['field_key'] ); ?>" id="<?php echo esc_attr( $data['field_key'] ); ?>" class="directorist-form-element" rows="<?php echo (int) $data['rows']; ?>" placeholder="<?php echo esc_attr( $data['placeholder'] ); ?>" <?php $listing_form->required( $data ); ?>><?php echo wp_kses_post( $data['value'] ); ?></textarea>
- <?php $listing_form->field_description_template( $data );?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement