Pagination stays on same page for post category
query_posts = _your_doing_it_wrong as soon as you throw in that nasty query_posts you are killing off all the global variables and your paging will not work. change: query_posts( array( ‘post_type’ => ‘fieldtrips’, ‘fieldtripcategory’ => ‘elementary-school-aquifer’, ‘order’ => ‘ASC’, ‘posts_per_page’ => 1 ) ); if ( have_posts() ) : while ( have_posts() ) : the_post(); to: … Read more