Advertisement
mahfuz118

Directorist - Custom Textarea Character Limit

Aug 23rd, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @author  wpWax
  4.  * @since   6.6
  5.  * @version 6.7
  6.  */
  7.  
  8. if ( ! defined( 'ABSPATH' ) ) exit;
  9.  
  10. $max = !empty( $data['rows'] ) ? 'maxlength="'. esc_attr( $data['rows'] * 70 ) .'"' : '';
  11. ?>
  12.  
  13. <div class="directorist-form-group directorist-custom-field-textarea">
  14.  
  15.     <?php $listing_form->field_label_template( $data );?>
  16.  
  17.     <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>
  18.  
  19.     <?php $listing_form->field_description_template( $data );?>
  20.  
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement