Ugh, first off, this is an older installation of wordpress, so maybe my issue is that I'm used to using the newest version - regardless. I'm having an issue showing all posts from specific categories. I'm suing the query on a page with tabs, each tab is a new query for that category. (here is the link).
I'm pretty frustrated with this whole operation, but I know its probably simple. Any help would be greatly appreciated =)
Here's the query I'm using to call the category posts:
<?php $recent = new WP_Query(); ?>
<?php $recent->query('cat=10'); ?>
<?php while($recent->have_posts()) : $recent->the_post(); ?>