forked from mirror/_s
Merge pull request #1231 from webmandesign/patch-2
Fixing localization function inside `printf()`
This commit is contained in:
commit
cd10ba650b
|
@ -31,7 +31,7 @@ if ( post_password_required() ) {
|
||||||
if ( '1' === $comment_count ) {
|
if ( '1' === $comment_count ) {
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: title. */
|
/* translators: 1: title. */
|
||||||
esc_html_e( 'One thought on “%1$s”', '_s' ),
|
esc_html__( 'One thought on “%1$s”', '_s' ),
|
||||||
'<span>' . get_the_title() . '</span>'
|
'<span>' . get_the_title() . '</span>'
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
Reference in New Issue