Exclude Posts From Some Category

For WordPress v1.5 and higher

This example can be used to exclude a certain Category from being displayed.





<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
 <?php if (in_category('3')) continue; ?>
 <div class="post">


link

Leave a Reply