user2224610
user2224610

Reputation: 1

Showing child categories

HI I want to show some posts of category X but ONLY of this category but not child's categories too.

global $post;
$tmp_post = $post;

$args = array( 'numberposts' =>-1, 'offset'=> 0, 'category' => 3 );     

$myposts = get_posts($args);    

foreach($myposts as $post) : setup_postdata($post);

How I should do it? thanks!

Upvotes: 0

Views: 24

Answers (1)

dKen
dKen

Reputation: 3127

Try:

$args = array( 'numberposts' =>-1, 'offset'=> 0, 'category__in' => 3 );

Upvotes: 1

Related Questions