Wordpress: Find posts in category 1 and not in category 2?

See Template Tags/query posts It works the same way as get_posts, not sure if it's less "expensive" but give it a try $catnow = 13; //replace with category id you want to pull $exception = ',-19,-18'; //replace with category ids you want to exclude $post_args = array('cat'=>$catnow. $exception); query_posts($post_args); if (have_posts()): while (have_posts()): the_post(); //do something to the posts endwhile; else: //no posts found endif.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions