diff --git src/wp-content/themes/twentyseventeen/inc/template-tags.php src/wp-content/themes/twentyseventeen/inc/template-tags.php
index 98733ff..08a408e 100644
|
|
function twentyseventeen_posted_on() { |
17 | 17 | |
18 | 18 | // Get the author name; wrap it in a link. |
19 | 19 | $byline = sprintf( |
20 | | _x( 'by %s', 'post author', 'twentyseventeen' ), |
| 20 | __( 'by %s', 'post author', 'twentyseventeen' ), |
21 | 21 | '<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 | 22 | ); |
23 | 23 | |
… |
… |
function twentyseventeen_time_link() { |
45 | 45 | ); |
46 | 46 | |
47 | 47 | // 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>'; |
| 48 | return '<span class="screen-reader-text">' . __( 'Posted on', 'post date', 'twentyseventeen' ) . '</span> <a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'; |
49 | 49 | } |
50 | 50 | endif; |
51 | 51 | |