Hi all,
I have the piece of code below which displays the latest posts. I have added '<?php the_category(', '); ?>' to show which category it is located. However, the code below will only show posts that are featured in 'uncategorized'.
<div class="blog_posts">
<div id="lefthand"><?php the_category(', '); ?></div>
<div id="righthand">"><?php the_title(); ?>
<?php the_excerpt(); ?></div>
<div style="clear:both"></div>
</div>
Any way around this?