diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index 01764f16e0..83cae40878 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -493,14 +493,14 @@ if ( ! function_exists( 'twentyten_posted_on' ) ) : * @since Twenty Ten 1.0 */ function twentyten_posted_on() { - printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), - 'class="meta-prep meta-prep-author"', - sprintf( '%3$s ', + printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), + 'meta-prep meta-prep-author', + sprintf( '', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), - sprintf( ' %3$s', + sprintf( '%3$s', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), get_the_author() diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php index 7bd2a660f8..31645eecc2 100644 --- a/wp-content/themes/twentyten/loop.php +++ b/wp-content/themes/twentyten/loop.php @@ -142,7 +142,7 @@
- ' . get_the_category_list( ', ' ) ); ?> + Posted in %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> | @@ -151,7 +151,7 @@ if ( $tags_list ): ?> - ' . $tags_list ); ?> + Tagged %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |