diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index f77ad14f8..06b44d0ea 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -437,7 +437,7 @@ function twentyten_posted_on() { */ function twentyten_posted_in() { - $tag_list = get_the_tag_list(); + $tag_list = get_the_tag_list( '', ', ', '' ); if ( $tag_list ) { $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.', 'twentyten' ); } else { diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php index 3c8b1cf62..b47a8fb6c 100644 --- a/wp-content/themes/twentyten/loop.php +++ b/wp-content/themes/twentyten/loop.php @@ -119,7 +119,15 @@ ?> | - ' . __( 'Tagged ', 'twentyten' ) . '', ', ', '|' ); ?> + + + ' . $tags_list ); ?> + + | + | ', '' ); ?>