How to display a different number of posts in reviews and videos archive?
-
I’m trying with
if(is_post_type_archive(‘gamepress_reviews‘)){
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts( array(
‘post_type’ => array(
‘post’,
$include_reviews
),
‘posts_per_page’ => XXXXX,
‘paged’ => $paged )
);
}but it doesn’t work.
How to do it?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to display a different number of posts in reviews and videos archive?’ is closed to new replies.