Exclude Blog Category From Main Blog
What i would like to do is have a second blog that runs off a different blog category but have the main blog exclude this new category as the content is different.
I have created a new blog template and this displays the new content correctly so i think to achieve what i want i just need to add to the loop code but i am not sure which loop i should edit...
The code i think i need is
Code:
<?php query_posts($query_string . '&cat=-3'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
This i think should exclude category number 3 but which file do i need to edit? would this be the main index.php or the tpl-blog.php
Thanks in advance