Changeset 32265 for trunk/src/wp-includes/class-wp-customize-control.php
- Timestamp:
- 04/22/2015 04:15:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r32134 r32265 1244 1244 public function content_template() { 1245 1245 $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); 1246 $active_url = esc_url( remove_query_arg( 'theme', $current_url ) ); 1246 1247 $preview_url = esc_url( add_query_arg( 'theme', '__THEME__', $current_url ) ); // Token because esc_url() strips curly braces. 1247 1248 $preview_url = str_replace( '__THEME__', '{{ data.theme.id }}', $preview_url ); 1248 1249 ?> 1249 <div class="theme" tabindex="0" data-preview-url="<?php echo esc_attr( $preview_url ); ?>" aria-describedby="{{ data.theme.id }}-action {{ data.theme.id }}-name"> 1250 <# if ( data.theme.isActiveTheme ) { #> 1251 <div class="theme active" tabindex="0" data-preview-url="<?php echo esc_attr( $active_url ); ?>" aria-describedby="{{ data.theme.id }}-action {{ data.theme.id }}-name"> 1252 <# } else { #> 1253 <div class="theme" tabindex="0" data-preview-url="<?php echo esc_attr( $preview_url ); ?>" aria-describedby="{{ data.theme.id }}-action {{ data.theme.id }}-name"> 1254 <# } #> 1255 1250 1256 <# if ( data.theme.screenshot[0] ) { #> 1251 1257 <div class="theme-screenshot"> … … 1255 1261 <div class="theme-screenshot blank"></div> 1256 1262 <# } #> 1257 <span class="more-details" id="{{ data.theme.id }}-action"><?php _e( 'Live Preview' ); ?></span> 1263 1264 <# if ( data.theme.isActiveTheme ) { #> 1265 <span class="more-details" id="{{ data.theme.id }}-action"><?php _e( 'Customize' ); ?></span> 1266 <# } else { #> 1267 <span class="more-details" id="{{ data.theme.id }}-action"><?php _e( 'Live Preview' ); ?></span> 1268 <# } #> 1269 1258 1270 <div class="theme-author"><?php printf( __( 'By %s' ), '{{ data.theme.author }}' ); ?></div> 1259 1271 1260 <h3 class="theme-name" id="{{ data.theme.id }}-name">{{ data.theme.name }}</h3> 1261 1262 <div class="theme-actions"> 1263 <button type="button" class="button theme-details"><?php _e( 'Theme Details' ); ?></button> 1264 </div> 1272 <# if ( data.theme.isActiveTheme ) { #> 1273 <h3 class="theme-name" id="{{ data.theme.id }}-name"> 1274 <?php 1275 /* translators: %s: theme name */ 1276 printf( __( '<span>Active:</span> %s' ), '{{ data.theme.name }}' ); 1277 ?> 1278 </h3> 1279 <# } else { #> 1280 <h3 class="theme-name" id="{{ data.theme.id }}-name">{{ data.theme.name }}</h3> 1281 <div class="theme-actions"> 1282 <button type="button" class="button theme-details"><?php _e( 'Theme Details' ); ?></button> 1283 </div> 1284 <# } #> 1265 1285 </div> 1266 1286 <?php
Note: See TracChangeset
for help on using the changeset viewer.