Show last post within all categories, except 1 category
-
Hi all
I cant figure it out:
I want to show the last post on my index page. Doesn’t matter what category as long as it is not from the category ‘twitter’ (twitter is category íD ‘5’).
How do I do that?<?php $cat_posts = new WP_Query('orderby=post_date'); ?> <?php if($cat_posts->have_posts()) : ?><?php while($cat_posts->have_posts()) : $cat_posts->the_post(); ?> <?php if(!in_category('5')) : ?> ...title stuff <?php endwhile; ?> <?php endif; ?>
I know that won’t work, but it’s the best I can do
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Show last post within all categories, except 1 category’ is closed to new replies.