I have been able to set up arquive pages for categories, showing the category name and description.
I would like to do the same for tags.
Both tags and categories are linked to the respective arquive pages on the footer of each post and seem to work fine as far as content goes.
However, I can't figure out how to get the tag name and description to appear on the tag archive page, like it does on the category archive page.
===========
OK, I found the solution. Actually, it's quite simple:
Just put this code in ATO "Style and Edit Center Column", in the box "Content Above the Loop"
<?php if ( is_tag() ) { ?>
<div class="catbox"><strong><?php single_tag_title(); ?>
</strong> <?php echo tag_description(); ?></div>
<?php } ?>
I use the "catbox" class to style both the Tag and Category pages in the HTML/CSS inserts section of ATO.
