Adjust byline for hidden date case
Switch from 'by author' to 'Posted by author' if 'Posted on ...' is hidden via filter.
This commit is contained in:
parent
ed0067a12f
commit
5ea71dac54
|
@ -37,7 +37,7 @@ if ( ! function_exists ( 'understrap_posted_on' ) ) {
|
||||||
$byline = apply_filters(
|
$byline = apply_filters(
|
||||||
'understrap_posted_by', sprintf(
|
'understrap_posted_by', sprintf(
|
||||||
'<span class="byline"> %1$s<span class="author vcard"><a class="url fn n" href="%2$s"> %3$s</a></span></span>',
|
'<span class="byline"> %1$s<span class="author vcard"><a class="url fn n" href="%2$s"> %3$s</a></span></span>',
|
||||||
esc_html_x( 'by', 'post author', 'understrap' ),
|
$posted_on ? esc_html_x( 'by', 'post author', 'understrap' ) : esc_html_x( 'Posted by', 'post author', 'understrap' ),
|
||||||
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
||||||
esc_html( get_the_author() )
|
esc_html( get_the_author() )
|
||||||
)
|
)
|
||||||
|
|
Reference in New Issue