From 6e0db32ccc17474a493eb1c59a8b4936dc7c75d6 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: https://develop.svn.wordpress.org/trunk@5568 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 );