forked from mirror/_s
some CS
This commit is contained in:
parent
6af98e3e3b
commit
b2880f537e
|
@ -26,9 +26,9 @@ if ( ! function_exists( '_s_posted_on_by' ) ) :
|
||||||
);
|
);
|
||||||
|
|
||||||
printf(
|
printf(
|
||||||
/* translators: %1$s: post date, %2$s: post author . */
|
/* translators: %1$s: post date, %2$s: post author . */
|
||||||
__( '<span class="posted-on">Posted on %1$s</span> <span class="byline">by %2%s</span>', '_s' ),
|
__( '<span class="posted-on">Posted on %1$s</span> <span class="byline">by %2$s</span>', '_s' ),
|
||||||
'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>',
|
'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>', // WPCS: XSS OK.
|
||||||
'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
|
'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue