Changeset 51927
- Timestamp:
- 10/22/2021 04:08:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r51518 r51927 633 633 </button> 634 634 <div class="new-content-item"> 635 <label for="create-input-<?php echo $this->id; ?>"><span class="screen-reader-text"><?php _e( 'New page title' ); ?></span></label>636 <input type="text" id="create-input-<?php echo $this->id; ?>" class="create-item-input" placeholder="<?php esc_attr_e( 'New page title…' ); ?>">635 <label for="create-input-<?php echo esc_attr( $this->id ); ?>"><span class="screen-reader-text"><?php _e( 'New page title' ); ?></span></label> 636 <input type="text" id="create-input-<?php echo esc_attr( $this->id ); ?>" class="create-item-input" placeholder="<?php esc_attr_e( 'New page title…' ); ?>"> 637 637 <button type="button" class="button add-content"><?php _e( 'Add' ); ?></button> 638 638 </div> … … 676 676 final public function print_template() { 677 677 ?> 678 <script type="text/html" id="tmpl-customize-control-<?php echo $this->type; ?>-content">678 <script type="text/html" id="tmpl-customize-control-<?php echo esc_attr( $this->type ); ?>-content"> 679 679 <?php $this->content_template(); ?> 680 680 </script>
Note: See TracChangeset
for help on using the changeset viewer.