WordPress /page/2 not working
Don’t use query_posts, ever. The first 6 queries can be condensed to a single WP_Query: $args = array( ‘cat’ => 3598, ‘posts_per_page’ => 6 ); $featured = new WP_Query( $args ); if( $featured->have_posts() ){ $featured->the_post(); ?> your markup for the first post <?php $featured->the_post(); ?> your markup for the second post <?php $featured->the_post(); // etc.. … Read more