wp-content/themes/twentythirteen/functions.php:610Print HTML with date information for current post.
$displaybooloptionaltruestring function twentythirteen_entry_date( $display = true ) { if ( has_post_format( array( 'chat', 'status' ) ) ) { /* translators: 1: Post format name, 2: Date. */ $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' ); } else { $format_prefix = '%2$s'; } $date = sprintf( '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>', esc_url( get_permalink() ), /* translators: %s: Post title. */ esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ), esc_attr( get_the_date( 'c' ) ), esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) ) ); if ( $display ) { echo $date; } return $date; }Introduced in Twenty Thirteen 1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/themes/twentythirteen/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.