get of tag and category description text for wordpress
// category.php
<?php if ( category_description() ) : ?>
<div id="archiveMeta"><?php echo category_description(); ?></div>
<?php endif; ?>
// tag.php
<?php if ( tag_description() ) : ?>
<div id="archiveMeta"><?php echo tag_description(); ?></div>
<?php endif; ?>