From 55845bb061c470e7b670838e435938470fe7a1e2 Mon Sep 17 00:00:00 2001 From: rob1n Date: Fri, 15 Jun 2007 18:26:43 +0000 Subject: [PATCH] Show the name, not the slug. fixes #4473 git-svn-id: https://develop.svn.wordpress.org/trunk@5715 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 18d03a5263..bf60ad3662 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -436,7 +436,7 @@ function the_tags( $before = 'Tags: ', $sep = ', ', $after = '' ) { $tag_list = $before; foreach ( $tags as $tag ) - $tag_links[] = ''; + $tag_links[] = ''; $tag_links = join( $sep, $tag_links ); $tag_links = apply_filters( 'the_tags', $tag_links );