- Timestamp:
- 07/09/2019 01:08:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/author-bio.php
r42343 r45609 24 24 </div><!-- .author-avatar --> 25 25 <div class="author-description"> 26 <h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2> 26 <h2 class="author-title"> 27 <?php 28 /* translators: %s: author display name */ 29 printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); 30 ?> 31 </h2> 27 32 <p class="author-bio"> 28 33 <?php the_author_meta( 'description' ); ?> 29 34 <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> 30 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentythirteen' ), get_the_author() ); ?> 35 <?php 36 /* translators: %s: author display name */ 37 printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentythirteen' ), get_the_author() ); 38 ?> 31 39 </a> 32 40 </p>
Note: See TracChangeset
for help on using the changeset viewer.