hi,
I had the problem with the five posts as well.
My solution:
edit single_categories.php
function loadCategory($cat_id)
{
$args = array(
'numberposts' => 5,
'offset' => 0,
'category' => $cat_id,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'suppress_filters' => true
);
$posts_array = get_posts( $args );
return $posts_array;
}
change ‘numberposts’ => 5,
to 50