mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-08-14 15:34:03 +00:00
12 lines
468 B
PHP
12 lines
468 B
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 echo esc_textarea($options['value'])
|
|
?></textarea>
|
|
<?php
|
|
}
|
|
}
|