Hi,
I've been trying to exclude on particular category from being archived and I've tried placing a few variations on code above the loop:
<?php if (!in_category(39)) continue; ?>
<?php query_posts('showposts=2&cat=-39'); ?>
<?php query_posts( 'posts_per_page=3 && author=2' ); ?>
none of these seem to work how I want them to, and the last "posts_per_page" code seems to destroy the functionality of the "previous" link for posts further back in time, it simply takes me back to the same set of posts as the current (archives) page. Any ideas on why this may be?
Thanks in advance!