Fix datetime values

This commit is contained in:
Matthew Boynes 2018-03-16 20:39:14 -04:00 committed by GitHub
parent 72e34ef6bc
commit 884a7b0821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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() )
); );