Pagination is somewhat working on frontpage, doesn’t update when “prev” is clicked
I suspect your problem is here: ‘base’ => get_pagenum_link(1) . ‘%_%’ You’re passing 1 to get_pagenum_link(), rather than the actual page number. Try passing your previously determined $current_page instead: ‘base’ => get_pagenum_link( $current_page ) . ‘%_%’ Note, I use this as base: ‘base’ => @add_query_arg(‘paged’,’%#%’) Edit I tried your suggestion as well as the ‘@add_query_arg’ … Read more