Changeset 33820
- Timestamp:
- 08/31/2015 03:50:05 AM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/theme.php
r33492 r33820 534 534 <span class="current-label"><?php _e( 'Current Theme' ); ?></span> 535 535 <# } #> 536 <h 3 class="theme-name">{{{ data.name }}}<span class="theme-version"><?php printf( __( 'Version: %s' ), '{{ data.version }}' ); ?></span></h3>537 <h 4 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h4>536 <h2 class="theme-name">{{{ data.name }}}<span class="theme-version"><?php printf( __( 'Version: %s' ), '{{ data.version }}' ); ?></span></h2> 537 <h3 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h3> 538 538 <p class="theme-description">{{{ data.description }}}</p> 539 539 -
trunk/src/wp-admin/js/theme.js
r33650 r33820 984 984 // 'Add new theme' element shown at the end of the grid 985 985 if ( themes.data.settings.canInstall ) { 986 this.$el.append( '<div class="theme add-new-theme"><a href="' + themes.data.settings.installURI + '"><div class="theme-screenshot"><span></span></div><h 3 class="theme-name">' + l10n.addNew + '</h3></a></div>' );986 this.$el.append( '<div class="theme add-new-theme"><a href="' + themes.data.settings.installURI + '"><div class="theme-screenshot"><span></span></div><h2 class="theme-name">' + l10n.addNew + '</h2></a></div>' ); 987 987 } 988 988 -
trunk/src/wp-admin/themes.php
r33492 r33820 226 226 227 227 <?php if ( $theme['active'] ) { ?> 228 <h 3class="theme-name" id="<?php echo $aria_name; ?>">228 <h2 class="theme-name" id="<?php echo $aria_name; ?>"> 229 229 <?php 230 230 /* translators: %s: theme name */ 231 231 printf( __( '<span>Active:</span> %s' ), $theme['name'] ); 232 232 ?> 233 </h 3>233 </h2> 234 234 <?php } else { ?> 235 <h 3 class="theme-name" id="<?php echo $aria_name; ?>"><?php echo $theme['name']; ?></h3>235 <h2 class="theme-name" id="<?php echo $aria_name; ?>"><?php echo $theme['name']; ?></h2> 236 236 <?php } ?> 237 237 … … 328 328 329 329 <# if ( data.active ) { #> 330 <h 3class="theme-name" id="{{ data.id }}-name">330 <h2 class="theme-name" id="{{ data.id }}-name"> 331 331 <?php 332 332 /* translators: %s: theme name */ 333 333 printf( __( '<span>Active:</span> %s' ), '{{{ data.name }}}' ); 334 334 ?> 335 </h 3>335 </h2> 336 336 <# } else { #> 337 <h 3 class="theme-name" id="{{ data.id }}-name">{{{ data.name }}}</h3>337 <h2 class="theme-name" id="{{ data.id }}-name">{{{ data.name }}}</h2> 338 338 <# } #> 339 339 … … 377 377 <span class="current-label"><?php _e( 'Current Theme' ); ?></span> 378 378 <# } #> 379 <h 3 class="theme-name">{{{ data.name }}}<span class="theme-version"><?php printf( __( 'Version: %s' ), '{{ data.version }}' ); ?></span></h3>380 <h 4 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h4>379 <h2 class="theme-name">{{{ data.name }}}<span class="theme-version"><?php printf( __( 'Version: %s' ), '{{ data.version }}' ); ?></span></h2> 380 <h3 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h3> 381 381 382 382 <# if ( data.hasUpdate ) { #>
Note: See TracChangeset
for help on using the changeset viewer.