Changeset 45609 for trunk/src/wp-content/themes/twentytwelve/author.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/author.php
r44496 r45609 30 30 31 31 <header class="archive-header"> 32 <h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1> 32 <h1 class="archive-title"> 33 <?php 34 /* translators: author display name */ 35 printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); 36 ?> 37 </h1> 33 38 </header><!-- .archive-header --> 34 39 … … 62 67 </div><!-- .author-avatar --> 63 68 <div class="author-description"> 64 <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2> 69 <h2> 70 <?php 71 /* translators: author display name */ 72 printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); 73 ?> 74 </h2> 65 75 <p><?php the_author_meta( 'description' ); ?></p> 66 76 </div><!-- .author-description -->
Note: See TracChangeset
for help on using the changeset viewer.