From 0617eb51d0bc63f2666ed830a1bbc48fed74a1f7 Mon Sep 17 00:00:00 2001 From: rob1n Date: Mon, 28 May 2007 02:07:59 +0000 Subject: [PATCH] Add rel="tag" to tag links. fixes #4159 git-svn-id: http://svn.automattic.com/wordpress/trunk@5568 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index ab89167d56..cc419a48a0 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -422,7 +422,7 @@ function the_tags( $before = 'Tags: ', $sep = ', ', $after = '' ) { $tag_list = $before; foreach ( $tags as $tag ) - $tag_links[] = '' . $tag->slug . ''; + $tag_links[] = ''; $tag_links = join( $sep, $tag_links ); $tag_links = apply_filters( 'the_tags', $tag_links );