# customify/1.5.5/features/customizer/controls/class-Pix_Customize_Textarea_Control.php

Customify, version 1.5.5. 30 lines.

- Page: https://pluginprobe.com/plugins/customify/1.5.5/code/features/customizer/controls/class-Pix_Customize_Textarea_Control.php
- Raw: https://pluginprobe.com/plugins/customify/1.5.5/raw/features/customizer/controls/class-Pix_Customize_Textarea_Control.php
- Modified: 2017-03-09T10:06:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/customify/1.5.5/code/features/customizer/controls/class-Pix_Customize_Textarea_Control.php#L10-L20`.

```php
<?php

/**
 * Class Pix_Customize_Textarea_Control
 * A simple Text Control
 */
class Pix_Customize_Textarea_Control extends Pix_Customize_Control {
	public $type    = 'textarea';
	public $live    = false;

	/**
	 * Render the control's content.
	 *
	 * @since 3.4.0
	 */
	public function render_content() { ?>
		<label>
			<?php if ( ! empty( $this->label ) ) : ?>
				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
			<?php endif; ?>
			<textarea rows="5" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
			<?php if ( ! empty( $this->description ) ) : ?>
				<span class="description customize-control-description"><?php echo $this->description; ?></span>
			<?php endif; ?>
		</label>
	<?php

	}
}

```
