Ticket #26602: 26602.1.patch
File 26602.1.patch, 1.4 KB (added by , 11 years ago) |
---|
-
wp-admin/themes.php
192 192 */ 193 193 194 194 foreach ( $themes as $theme ) : ?> 195 <div class="theme<?php if ( $theme['active'] ) echo ' active'; ?> ">195 <div class="theme<?php if ( $theme['active'] ) echo ' active'; ?> tabindex="0" aria-describedby="<?php echo $theme['id']; ?>-action <?php echo $theme['id']; ?>-name"> 196 196 <?php if ( ! empty( $theme['screenshot'][0] ) ) { ?> 197 197 <div class="theme-screenshot"> 198 198 <img src="<?php echo $theme['screenshot'][0]; ?>" alt="" /> … … 200 200 <?php } else { ?> 201 201 <div class="theme-screenshot blank"></div> 202 202 <?php } ?> 203 <span class="more-details" ><?php _e( 'Theme Details' ); ?></span>203 <span class="more-details" id="<?php echo $theme['id']; ?>-action"><?php _e( 'Theme Details' ); ?></span> 204 204 <div class="theme-author"><?php printf( __( 'By %s' ), $theme['author'] ); ?></div> 205 205 206 206 <?php if ( $theme['active'] ) { ?> 207 <h3 class="theme-name" ><span><?php _ex( 'Active:', 'theme' ); ?></span> <?php echo $theme['name']; ?></h3>207 <h3 class="theme-name" id="<?php echo $theme['id']; ?>-name"><span><?php _ex( 'Active:', 'theme' ); ?></span> <?php echo $theme['name']; ?></h3> 208 208 <?php } else { ?> 209 209 <h3 class="theme-name"><?php echo $theme['name']; ?></h3> 210 210 <?php } ?>