I've been trying different variations of:
PHP Code:
<?php query_posts( 'cat=-3' ); ?>
<?php query_posts(array('paged' => get_query_var('paged'),'posts_per_page' =>10)); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
PHP Code:
<?php query_posts('cat=-3'); ?>
<?php if (have_posts()) : ?>
<div id="content">
<!--page.php-->
<div id="post" class="post clearfix">
<?php query_posts(array('paged' => get_query_var('paged'),'posts_per_page' =>10)); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
I don't really want to have to use another plugin for this and don't want to have to edit much except for the blog.php template which is used to display blog posts.. I just want to EXCLUDE "Memorials" which is Category ID 3... Can't seem to figure this one out...
Bookmarks