Ok.
more info. I have a category with id 7(parent category). Under it there are a lot of child categories.
When i am executing
$recent_posts = new WP_Query(array(‘showposts’ => $num_posts, ‘post_type’ => ‘post’, ‘cat’ => ‘7’)); i get this error.
When i am executing the query with the child ids is working.
$recent_posts = new WP_Query(array(‘showposts’ => $num_posts, ‘post_type’ => ‘post’, ‘cat’ => ‘16,17,21,18,15,14,19,28,29,26,23,25,59,22,64,30,27,63,24,20’));