From: Laury GvR Date: Fri, 31 Jul 2015 20:06:20 +0000 (-0400) Subject: Category links at bottom of blog fixed. X-Git-Tag: v1.0^2~33 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=0d64e4ef5e8359f05dbbe9f8d205998c67edbd96;p=WP-Themes%2Fnorthernlakes.git Category links at bottom of blog fixed. --- diff --git a/home.php b/home.php index b120ad8..c5ae7db 100644 --- a/home.php +++ b/home.php @@ -26,7 +26,7 @@ foreach($post_categories as $c){ $cat = get_category( $c ); $cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug ); - echo ', '. $cat->name .''; + echo ', '. $cat->name .''; } echo '.'; } diff --git a/single.php b/single.php index 004600f..bbbe537 100644 --- a/single.php +++ b/single.php @@ -19,7 +19,7 @@ foreach($post_categories as $c){ $cat = get_category( $c ); $cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug ); - echo ''. $cat->name .', '; + echo ''. $cat->name .', '; } } $post_tags = wp_get_post_tags( get_the_ID() ); @@ -29,7 +29,7 @@ foreach($post_tags as $t){ $tag = get_tag( $t ); $tags[] = array( 'name' => $tag->name, 'slug' => $tag->slug ); - echo ''. $tag->name .', '; + echo ''. $tag->name .', '; } } echo ' on ';