Skip to content
This repository was archived by the owner on May 23, 2018. It is now read-only.

Commit 4bd14a4

Browse files
Remove unnecessary context, restore translator comment
1 parent 3a1bf22 commit 4bd14a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inc/template-tags.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ function twentysixteen_post_thumbnail() {
181181
function twentysixteen_excerpt_more() {
182182
$link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
183183
esc_url( get_permalink( get_the_ID() ) ),
184-
sprintf( _x( 'Continue reading %s', 'Name of current post', 'twentysixteen' ), '<span class="screen-reader-text">' . esc_html( get_the_title( get_the_ID() ) ) . '</span>' )
184+
/* translators: %s: Name of current post */
185+
sprintf( __( 'Continue reading %s', 'twentysixteen' ), '<span class="screen-reader-text">' . esc_html( get_the_title( get_the_ID() ) ) . '</span>' )
185186
);
186187
return ' &hellip; ' . $link;
187188
}

0 commit comments

Comments
 (0)