Ticket #47445: 47445.patch
File 47445.patch, 843 bytes (added by , 6 years ago) |
---|
-
src/wp-includes/class-wp-customize-control.php
554 554 <?php 555 555 break; 556 556 case 'textarea': 557 if ( !array_key_exists( 'rows', $this->input_attrs ) ) { 558 $this->input_attrs['rows'] = 5; 559 } 557 560 ?> 558 561 <?php if ( ! empty( $this->label ) ) : ?> 559 562 <label for="<?php echo esc_attr( $input_id ); ?>" class="customize-control-title"><?php echo esc_html( $this->label ); ?></label> … … 563 566 <?php endif; ?> 564 567 <textarea 565 568 id="<?php echo esc_attr( $input_id ); ?>" 566 rows="5"567 569 <?php echo $describedby_attr; ?> 568 570 <?php $this->input_attrs(); ?> 569 571 <?php $this->link(); ?>