ensure variable is of type int
This commit is contained in:
parent
38ada2f3c2
commit
e5c7ebc7ef
|
|
@ -40,7 +40,7 @@ if ( ! function_exists( 'understrap_posted_on' ) ) {
|
|||
sprintf(
|
||||
'<span class="byline"> %1$s<span class="author vcard"> <a class="url fn n" href="%2$s">%3$s</a></span></span>',
|
||||
$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( (int) get_the_author_meta( 'ID' ) ) ),
|
||||
esc_html( get_the_author() )
|
||||
)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue