Quote:
Originally Posted by BCyber
Have any of you guys seen a plugin that will let you put links only in certain categories? I looked real quick the other day but didn't see anything.
|
There probably is a few plugin solutions that do it now but I've always used my category and tag descriptions to show unique content/links on my cat/tag pages.
PHP Code:
<?php $category = get_the_category();
echo $category[0]->category_description; ?>
You can put full html in the description fields, you can basically build full pages in there and pull them if you wanted to.