This works pretty good except it is limited to 10 posts since my blog is set to show 10 posts maximum.
$featured_query = new WP_Query('cat=3');
while( $featured_query->have_posts() ){
$featured_query->the_post();
$postcount++;
...
How can I override that setting and get ALL posts in that category regardless of the maximum posts setting?
Use
showposts=-1
. This will override the defaults posts setting. Per this: http://codex.wordpress.org/Template_Tags/query_posts#Post_.26_Page_ParametersThis is best way to do the list of a particular category..
Thanks
MrPhpGuru
Does query_posts(‘cat=3’) do what you want?