Changeset 32649 for trunk/src/wp-includes/class-wp-customize-panel.php
- Timestamp:
- 05/29/2015 01:56:39 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-customize-panel.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-panel.php
r31541 r32649 316 316 protected function render_content() { 317 317 ?> 318 <li class="panel-meta accordion-section control-section<?php if ( empty( $this->description ) ) { echo ' cannot-expand'; } ?>"> 319 <div class="accordion-section-title" tabindex="0"> 318 <li class="panel-meta customize-info accordion-section<?php if ( empty( $this->description ) ) { echo ' cannot-expand'; } ?>"> 319 <button class="customize-panel-back" tabindex="-1"><span class="screen-reader-text"><?php _e( 'Back' ); ?></span></button> 320 <div class="accordion-section-title"> 320 321 <span class="preview-notice"><?php 321 322 /* translators: %s is the site/panel title in the Customizer */ 322 323 echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title">' . esc_html( $this->title ) . '</strong>' ); 323 324 ?></span> 325 <button class="customize-help-toggle dashicons dashicons-editor-help" tabindex="0" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button> 324 326 </div> 325 327 <?php if ( ! empty( $this->description ) ) : ?> 326 <div class=" accordion-section-contentdescription">328 <div class="description customize-panel-description"> 327 329 <?php echo $this->description; ?> 328 330 </div>
Note: See TracChangeset
for help on using the changeset viewer.