Changeset 9630
- Timestamp:
- 03/25/2020 05:59:27 AM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/page-commercial.php
r9211 r9630 47 47 <article id="post-<?php echo esc_attr( $shop->slug ); ?>" class="theme hentry"> 48 48 <div class="theme-screenshot"> 49 <img src="<?php echo esc_url( $shop->image ); ?>" alt="<?php49 <img src="<?php echo esc_url( $shop->image ); ?>" loading="lazy" alt="<?php 50 50 /* translators: %s: name of theme shop */ 51 51 echo esc_attr( sprintf( __( '%s homepage', 'wporg-themes' ), $shop_name ) ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/theme.php
r8998 r9630 3 3 <?php if ( $theme->screenshot_url ) { ?> 4 4 <div class="theme-screenshot"> 5 <img src="<?php echo esc_url( $theme->screenshot_url ); ?>?w=572&strip=all" alt="" />5 <img src="<?php echo esc_url( $theme->screenshot_url ); ?>?w=572&strip=all" loading="lazy" alt="" /> 6 6 </div> 7 7 <?php } else { ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/view-templates/theme-preview.php
r8998 r9630 14 14 <# } #> 15 15 16 <img class="theme-screenshot" src="{{ data.screenshot_url }}?w=520&strip=all" alt="" />16 <img class="theme-screenshot" src="{{ data.screenshot_url }}?w=520&strip=all" loading="lazy" alt="" /> 17 17 18 18 <div class="theme-details"> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/view-templates/theme.php
r8998 r9630 3 3 <# if ( data.screenshot_url ) { #> 4 4 <div class="theme-screenshot"> 5 <img src="{{ data.screenshot_url }}?w=572&strip=all" alt="" />5 <img src="{{ data.screenshot_url }}?w=572&strip=all" loading="lazy" alt="" /> 6 6 </div> 7 7 <# } else { #>
Note: See TracChangeset
for help on using the changeset viewer.