Changeset 13979
- Timestamp:
- 08/19/2024 10:19:46 PM (7 weeks ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-c.php
r11647 r13979 31 31 <div class="entry-content"> 32 32 <span></span> 33 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> </a>33 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> (<?php echo number_format_i18n( $term->count ); ?>)</a> 34 34 </div><!-- .entry-content --> 35 35 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-color.php
r11647 r13979 33 33 <div class="entry-content"> 34 34 <span></span> 35 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> (<?php echo $term->count; ?>)</a>35 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> (<?php echo number_format_i18n( $term->count ); ?>)</a> 36 36 </div><!-- .entry-content --> 37 37 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/template-parts/content-page-orientation.php
r11647 r13979 33 33 <div class="entry-content"> 34 34 <span></span> 35 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> </a>35 <a href="<?php echo esc_url( get_term_link( $term->term_id ) ); ?>"><?php echo $term->name; ?> (<?php echo number_format_i18n( $term->count ); ?>)</a> 36 36 </div><!-- .entry-content --> 37 37
Note: See TracChangeset
for help on using the changeset viewer.