wp-content/themes/twentyten/functions.php:673Print HTML with meta information for the current post (category, tags and permalink).
function twentyten_posted_in() { // Retrieves tag list of current post, separated by commas. $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list && ! is_wp_error( $tags_list ) ) { /* translators: 1: Category name, 2: Tag name, 3: Post permalink, 4: Post title. */ $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { /* translators: 1: Category name, 3: Post permalink, 4: Post title. */ $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } else { /* translators: 3: Post permalink, 4: Post title. */ $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } // Prints the string, replacing the placeholders. printf( $posted_in, get_the_category_list( ', ' ), $tags_list, esc_url( get_permalink() ), the_title_attribute( 'echo=0' ) ); }Introduced in Twenty Ten 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/twentyten/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.