On my main index template (index.php), I have the following bit of code to restrict the categories that are displayed to just my blog, updates, and uncategorized posts:
<?php query_posts('cat=1,3,15'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
However, when I try to browse by category, all the category pages show only those posts, as well, and don't let me access the other posts.
Is there some piece of code that I need to put elsewhere or modify in order to be able to show only those categories on the homepage, but allow browsing by categories? Thanks!