Hello, I'm trying to set a category to display 100-500 posts. Apparently the function below ceases to work if you set the number above 10.
Can someone please help?
(This is the function i've tried to do it with, but no dice)
function my_cat_archive_post_limit() {
if (is_category('6')) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('cat=6 &showposts=1 &paged=' . $paged );
$wp_query->is_archive = true; $wp_query->is_home = false;
}
}
add_action('thematic_above_categoryloop','my_cat_archive_post_limit');