This works well, except that it is limited to 10 posts, as my blog is set up for a maximum of 10 posts.
$featured_query = new WP_Query('cat=3');
while( $featured_query->have_posts() ){
$featured_query->the_post();
$postcount++;
...
How can I override this parameter and get ALL messages in this category, regardless of whether the maximum message values are set?
source
share