b0y-101 Mini Shell


Current Path : E:/www3/chiangrai/wp-content/plugins/so-widgets-bundle/widgets/contact/fields/
File Upload :
Current File : E:/www3/chiangrai/wp-content/plugins/so-widgets-bundle/widgets/contact/fields/textarea.class.php

<?php

class SiteOrigin_Widget_ContactForm_Field_TextArea extends SiteOrigin_Widget_ContactForm_Field_Base {
	public function render_field( $options ) {
		?>
		<textarea
			name="<?php echo esc_attr( $options['field_name'] ); ?>"
			id="<?php echo esc_attr( $options['field_id'] ); ?>"
			rows="10"
			<?php echo $options['show_placeholder'] ? 'placeholder="' . esc_attr( $options['label'] ) . '"' : ''; ?>
			<?php self::add_custom_attrs( $this->type, $options ); ?>
		><?php
		echo esc_textarea( $options['value'] );
		?></textarea>
		<?php
	}
}

Copyright © 2019 by b0y-101