paged list with current position
-
Hi everyone.
I am struggling with a paged list of posts.
The problem is that whenever you click an item, the pagination resets to first page. I’ve been searching quite some time but I can’t find a working solution.
This is the query I used:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'post_type' => page, 'post_parent' => $post->post_parent, 'posts_per_page' => 12, 'orderby' => menu_order, 'paged'=>$paged, 'order' => ASC ); query_posts($args);
You can see the output here: https://2010.jurisverbeelding.nl/foto/portret
Thanks in advance!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘paged list with current position’ is closed to new replies.