I love the theme and slowly tweaking it to fit my needs, but I'm having a bit of an issue. I'm trying to display Tags and Categories together at the bottom of the posts.
While this works on Single Post:
Posted in » <?php if (the_category(', ')) the_category(); ?> <?php if (get_the_tags()) the_tags(', '); ?>
It doesn't work on the Main Index.
I did some searching around on the WordPress Forums and I got Tags to display by changing this:
<?php $firstpostquery = new WP_Query('showposts=1'); ?>
<?php while($firstpostquery->have_posts()) : $firstpostquery->the_post(); $firstpost = $post->ID; ?>
To
<?php query_posts('showposts=1'); while(have_posts()) : the_post(); $firstpost = $post->ID; ?>
Fixes the tags displaying on the first post displaying on the main index it breaks the excerpts at the bottom of the page.
