wp-content/themes/twentythirteen/functions.php:581Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
function twentythirteen_entry_meta() { if ( is_sticky() && is_home() && ! is_paged() ) { echo '<span class="featured-post">' . esc_html__( 'Sticky', 'twentythirteen' ) . '</span>'; } if ( ! has_post_format( 'link' ) && 'post' === get_post_type() ) { twentythirteen_entry_date(); } $categories_list = get_the_category_list( wp_get_list_item_separator() ); if ( $categories_list ) { echo '<span class="categories-links">' . $categories_list . '</span>'; } $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); if ( $tags_list && ! is_wp_error( $tags_list ) ) { echo '<span class="tags-links">' . $tags_list . '</span>'; } // Post author. if ( 'post' === get_post_type() ) { printf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), /* translators: %s: Author display name. */ esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ), get_the_author() ); } }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.