Changeset 38933
- Timestamp:
- 10/25/2016 10:50:39 PM (8 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r38906 r38933 533 533 <span class="description customize-control-description"><?php echo $this->description; ?></span> 534 534 <?php endif; ?> 535 <textarea rows="5" <?php $this-> link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>535 <textarea rows="5" <?php $this->input_attrs(); ?> <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea> 536 536 </label> 537 537 <?php -
trunk/src/wp-includes/class-wp-customize-manager.php
r38928 r38933 3416 3416 'section' => 'custom_css', 3417 3417 'settings' => array( 'default' => $custom_css_setting->id ), 3418 'input_attrs' => array( 3419 'placeholder' => __( "/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/" ), 3420 ) 3418 3421 ) ); 3419 3422 }
Note: See TracChangeset
for help on using the changeset viewer.