Remove Specific Categories From The Loop
<?php query_posts('cat=-3'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h3></h3>
<p><?php the_time('F jS, Y') ?></p>
<?php the_content(); ?>
<?php endwhile; ?>
The area inside the while loop could be anything, that's just some example typical inside-loop code. The trick is the first line, and the cat=-3 parameter. "-3" in this case is the ID of the category, and you can replace that with any category you wish to remove from the loop. You may use comma separated values here to remove more than one category (e.g. cat=-1,-2).
I use that so i can have 2 pages that display different posts one display the news and the other my latest work everything works fine but for some reason the read more button does not appear any suggestions thanks
Hi
Do you know how to code this if you used /work/ instead of an id.
Thanks
i use it within looping. is it ok?
here..
because i’m using wp_pagenavi… is it ok?
Messed with pagination, you guys should check some things before starting giving tips.