Same items on every page
-
I´ve got problem with the pagination when I should go to page 2, 3 and so on. The page/2/ is gone/removed from the url when the page reloads. So I can only see the first items all the time. When I check the url in the pagination at the bottom it shows up fine For example:
http://kartago.se.preview.binero.se/forfattare/jan-stenmark/page/2/#content.
This is the page with problem:
http://kartago.se.preview.binero.se/forfattare/jan-stenmark/
I use the plugin on the pages Böcker and Författare, and it is working fine.
I also use the code:
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $temp = $wp_query; $wp_query= null; ..... if(function_exists('wp_paginate')){ wp_paginate(); } $wp_query = null; $wp_query = $temp; wp_reset_postdata();What should I do to keep the page/2 in the url on page reload?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Same items on every page’ is closed to new replies.