Changeset 45609 for trunk/src/wp-content/themes/twentyten/loop-single.php
- Timestamp:
- 07/09/2019 01:08:47 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/loop-single.php
r45209 r45609 55 55 </div><!-- #author-avatar --> 56 56 <div id="author-description"> 57 <h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2> 57 <h2> 58 <?php 59 /* translators: %s: author display name */ 60 printf( __( 'About %s', 'twentyten' ), get_the_author() ); 61 ?> 62 </h2> 58 63 <?php the_author_meta( 'description' ); ?> 59 64 <div id="author-link"> 60 65 <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> 61 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?> 66 <?php 67 /* translators: %s: author display name */ 68 printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); 69 ?> 62 70 </a> 63 71 </div><!-- #author-link -->
Note: See TracChangeset
for help on using the changeset viewer.