Exclude category posts
-
Hi Everyone,
I have done this before with success but seem to be missing something with this code. On the blog page, I want to show all posts except ID 3 and 5.Here is the code:
<?php global $more; $more = 0; $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; query_posts(“category_name=blog&paged=$paged&posts_per_page=10”); $count=1; while(have_posts()): the_post(); $mykey_values = get_post_custom_values(‘image’); ?>
Thanks for any help!
Steve
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
The topic ‘Exclude category posts’ is closed to new replies.