Changeset 58146 for trunk/src/wp-includes/class-wp-customize-control.php
- Timestamp:
- 05/14/2024 04:47:03 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r57369 r58146 636 636 ?> 637 637 </button> 638 <div class="new-content-item"> 639 <label for="create-input-<?php echo esc_attr( $this->id ); ?>"><span class="screen-reader-text"> 640 <?php 641 /* translators: Hidden accessibility text. */ 642 _e( 'New page title' ); 643 ?> 644 </span></label> 645 <input type="text" id="create-input-<?php echo esc_attr( $this->id ); ?>" class="create-item-input" placeholder="<?php esc_attr_e( 'New page title…' ); ?>"> 646 <button type="button" class="button add-content"><?php _e( 'Add' ); ?></button> 638 <div class="new-content-item-wrapper"> 639 <label for="create-input-<?php echo esc_attr( $this->id ); ?>"><?php _e( 'New page title' ); ?></label> 640 <div class="new-content-item"> 641 <input type="text" id="create-input-<?php echo esc_attr( $this->id ); ?>" class="create-item-input" > 642 <button type="button" class="button add-content"><?php _e( 'Add' ); ?></button> 643 </div> 647 644 </div> 648 645 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.