I’m trying to display an archive page of all posts within a particular category at http://www.jmek.net/lq2013b/category/authors. However, only a single post from that category is appearing. I tried a snippet (below) from Prasanna that I found in another support post, but it isn’t working.
Any other ideas?
function number_of_posts_on_archive($query){
if ($query->is_category) {
$query->set('posts_per_page', 15);
}
return $query;
}
add_filter('pre_get_posts', 'number_of_posts_on_archive');