I have a problem that I can not solve. As the title says, I want to define a different number of posts in each category. I tried to query posts and not work, and they leave the posts of all categories, I tried also with pre_get_posts and this works. But it only works for the parent category, and can not find a function for it to work well for the sub categories as well.
This is what I want:
Category Parent 1 > Posts per page 5
subcategory > post per page 5
Category Parent 2 > Posts per page 10
subcategory > post per page 10
Category Parent 3 > Posts per page 20
subcategory > post per page 20
I tried with pre_get_posts but is_category only serves to the parent category and subcategories not.
function wpse47875_change_posts_per_page( $query ) {
if ( is_category( 'portadas-facebook' ) ){
//Display 4 posts for category 1
$query->set( 'posts_per_page', 1);
}
}
add_action('pre_get_posts', 'wpse47875_change_posts_per_page', 1);
Any idea?
Thanks