Exclude Category

This is the code I got to work after realizing that the code I was using broke the pagination. <?php if ( is_home() ) { $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; query_posts(‘cat=-21&paged=’.$paged); } ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> The code below worked part way, but Read More…