diff --git src/wp-includes/class-wp-customize-control.php src/wp-includes/class-wp-customize-control.php
index c45af67..7bed232 100644
|
|
|
class WP_Customize_Control { |
| 532 | 532 | if ( ! empty( $this->description ) ) : ?> |
| 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 |
| 538 | 538 | break; |
diff --git src/wp-includes/class-wp-customize-manager.php src/wp-includes/class-wp-customize-manager.php
index 229be36..bc9e111 100644
|
|
|
final class WP_Customize_Manager { |
| 3393 | 3393 | 'type' => 'textarea', |
| 3394 | 3394 | 'section' => 'custom_css', |
| 3395 | 3395 | 'settings' => array( 'default' => $custom_css_setting->id ), |
| | 3396 | 'input_attrs' => array( |
| | 3397 | 'placeholder' => __( "/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/" ), |
| | 3398 | ) |
| 3396 | 3399 | ) ); |
| 3397 | 3400 | } |
| 3398 | 3401 | |