forked from mirror/_s
Fix datetime values
This commit is contained in:
parent
72e34ef6bc
commit
884a7b0821
|
@ -18,9 +18,9 @@ if ( ! function_exists( '_s_posted_on' ) ) :
|
||||||
}
|
}
|
||||||
|
|
||||||
$time_string = sprintf( $time_string,
|
$time_string = sprintf( $time_string,
|
||||||
esc_attr( get_the_date( 'c' ) ),
|
esc_attr( get_the_date( DATE_W3C ) ),
|
||||||
esc_html( get_the_date() ),
|
esc_html( get_the_date() ),
|
||||||
esc_attr( get_the_modified_date( 'c' ) ),
|
esc_attr( get_the_modified_date( DATE_W3C ) ),
|
||||||
esc_html( get_the_modified_date() )
|
esc_html( get_the_modified_date() )
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Reference in New Issue