getting posts by cat with get_posts but need to exclude another cat called london or id 10. is this possible?

best, Dc.

//  array(7,-10)
    $laargsM = array('category' => 7, 'posts_per_page'=>300, 'orderby'=>'title', 'order'=>'asc' );
    $la_shapes = get_posts( $laargsM ); 
link|improve this question

70% accept rate
feedback

2 Answers

up vote 0 down vote accepted

as 'get_posts()' uses the 'WP_Query()' parameters, i would assume that this should work:

$laargsM = array('category' => 7, 'posts_per_page'=>300, 'orderby'=>'title', 'order'=>'asc', 'category__not_in' => array(10) );
link|improve this answer
thanks Michael & really good to know its uses the 'WP_Query()' parameters too... – daniel Crabbe Sep 9 '11 at 12:12
feedback

here is a good resource to see available arguments for get_posts, query_posts and WP_Query http://www.minimit.com/articles/wordpress-template-custom-queries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.