How can I get WordPress to display a link to only ONE category that a certain post has which links to show all posts of that category?
For example, if I had a post with the categories of "News, Cold, & Freezing", it would go and grab the first category (News) and display it. Then it would put a link around it so, when clicked, I can view other posts of that category.
<?php $category = get_the_category(); echo $category[0]->cat_name; ?>
^ That does one category, but I need how to do the link part..