Changeset 38885
- Timestamp:
- 10/24/2016 05:26:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyseventeen/inc/template-tags.php
r38872 r38885 18 18 // Get the author name; wrap it in a link. 19 19 $byline = sprintf( 20 _x( 'by %s', 'post author', 'twentyseventeen' ), 20 /* translators: %s: post author */ 21 __( 'by %s', 'twentyseventeen' ), 21 22 '<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . get_the_author() . '</a></span>' 22 23 ); … … 46 47 47 48 // Wrap the time string in a link, and preface it with 'Posted on'. 48 return '<span class="screen-reader-text">' . _x( 'Posted on', 'post date', 'twentyseventeen' ) . '</span> <a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'; 49 return sprintf( 50 /* translators: %s: post date */ 51 __( '<span class="screen-reader-text">Posted on</span> %s', 'twentyseventeen' ), 52 '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>' 53 ); 49 54 } 50 55 endif;
Note: See TracChangeset
for help on using the changeset viewer.