Changeset 45609 for trunk/src/wp-content/themes/twentytwelve/content.php
- Timestamp:
- 07/09/2019 01:08:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/content.php
r43571 r45609 69 69 </div><!-- .author-avatar --> 70 70 <div class="author-description"> 71 <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2> 71 <h2> 72 <?php 73 /* translators: %s: author display name */ 74 printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); 75 ?> 76 </h2> 72 77 <p><?php the_author_meta( 'description' ); ?></p> 73 78 <div class="author-link"> 74 79 <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> 75 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentytwelve' ), get_the_author() ); ?> 80 <?php 81 /* translators: %s: author display name */ 82 printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentytwelve' ), get_the_author() ); 83 ?> 76 84 </a> 77 85 </div><!-- .author-link -->
Note: See TracChangeset
for help on using the changeset viewer.