Advertisement
Guest User

Untitled

a guest
Jul 28th, 2012
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. class WP_Customize_Textarea_Control extends WP_Customize_Control {
  2.         public $type = 'textarea';
  3.  
  4.         public function render_content() {
  5.             ?>
  6.             <label>
  7.                 <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
  8.             <textarea rows="5" style="width:100%;" name="<?php echo esc_attr( $name ); ?>" <?php $this->link(); ?>><?php echo esc_attr( $this->value() ); ?></textarea>
  9.             </label>
  10.             <?php
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement