In catchbase-core.php, I’ve found a few references to “updated” regarding entry time. Do I need to modify any of these?
Or tell me where else to look in this file, or another…
if ( ! function_exists( ‘catchbase_entry_meta’ ) ) :
/**
* Prints HTML with meta information for the current post-date/time and author.
*
* @since Catch Base 1.0
*/
function catchbase_entry_meta() {
echo ‘<p class=”entry-meta”>’;
$time_string = ‘<time class=”entry-date published updated” datetime=”%1$s”>%2$s</time>’;
if ( get_the_time( ‘U’ ) !== get_the_modified_time( ‘U’ ) ) {
$time_string = ‘<time class=”entry-date published” datetime=”%1$s”>%2$s</time><time class=”updated” datetime=”%3$s”>%4$s</time>’;
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( ‘c’ ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( ‘c’ ) ),
esc_html( get_the_modified_date() )
);