Changeset 20182
- Timestamp:
- 03/15/2012 05:32:40 AM (8 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-section.php
r20181 r20182 66 66 ?> 67 67 <li id="customize-section-<?php echo esc_attr( $this->id ); ?>" class="control-section customize-section"> 68 <h3 class="customize-section-title" ><?php echo esc_html( $this->title ); ?></h3>68 <h3 class="customize-section-title" title="<?php echo esc_attr( $this->description ); ?>"><?php echo esc_html( $this->title ); ?></h3> 69 69 <ul class="customize-section-content"> 70 <?php if ( $this->description ) : ?>71 <li><p class="howto"><?php echo $this->description; ?></p></li>72 <?php endif; ?>73 74 70 <?php foreach ( $this->settings as $setting ) : ?> 75 71 <li id="customize-control-<?php echo esc_attr( $setting->id ); ?>" class="customize-control customize-control-<?php echo esc_attr( $setting->control ); ?>"> -
trunk/wp-includes/class-wp-customize.php
r20181 r20182 610 610 $this->add_section( 'strings', array( 611 611 'title' => __( 'Site Title & Tagline' ), 612 'description' => __( 'Customize some strings.' ),613 612 ) ); 614 613
Note: See TracChangeset
for help on using the changeset viewer.