wp-content/themes/twentysixteen/inc/template-tags.php:105Prints HTML with category and tags for current post.
function twentysixteen_entry_taxonomies() { $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) ); if ( $categories_list && twentysixteen_categorized_blog() ) { printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', /* translators: Hidden accessibility text. */ _x( 'Categories', 'Used before category names.', 'twentysixteen' ), $categories_list ); } $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) ); if ( $tags_list && ! is_wp_error( $tags_list ) ) { printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', /* translators: Hidden accessibility text. */ _x( 'Tags', 'Used before tag names.', 'twentysixteen' ), $tags_list ); } }Introduced in Twenty Sixteen 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/twentysixteen/inc/template-tags.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.