This looks like a simular issue to this one with wp-pageNavi: http://scribu.net/wordpress/wp-pagenavi/right-way-to-use-query_posts.html.
Taxonomies and archives should use ‘page’, not ‘paged’ so use that in the urls to begin with.
Then, to ensure your pagination script works in all locations you can change the way you get your $paged variable.
Something like this should do it:
if (is_archive()) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
} else {
$paged = (get_query_var('page')) ? get_query_var('page') : 1;
}
Related Posts:
- List posts based on first letter of posts
- posts_per_page & pagination conflict
- Broken pagination
- Search results with custom loop don’t update when paged
- Broken pagination, need help figuring out why!
- remove_query_arg() on rewrite rule
- Hide featured post on second page
- Pagination on 2nd loop
- How to get an array of years from all of the search results, and use it to filter by year the paginated loop?
- Is it possible to have pagination with an offset loop?
- Offset a post in the loop, with using PageNavi Plug-in
- Why do next pages load the same content rather then older articles?
- Add pagination to my custom loop [duplicate]
- Not refreshing content pagination on search result
- WordPress triggers 404 on page 2 for custom search query
- Search page pagination does not work
- How do I get my custom query to work with search results after the first page?
- Pagination Error : Duplicate argument being outputted
- Page with Multiple Loops Breaking Pagination
- Pagination Not Working When Modifying Loop Based on Post Category
- wordpress custom search page pagination returns 404
- Display more than 10 posts on author.php file
- Blog pagination WITHOUT using max_num_pages
- Page not found yet the posts are listed?
- Search URL redirect problem
- split wordpress loop into columns of categories and associated posts
- what code to add to search.php
- Search, pagination, the last pages leads to 404 page
- get_posts custom paging
- Search pagination link redirecting to a link that doesn’t work with pagination
- Pagination diplays always 2 pages
- Search URL gives 404
- Search engine not working
- Displaying posts limit: can’t get pagination to display [duplicate]
- The pagination doesn’t work
- Search pagination rewrite to fix 404
- Multiple WP_Query loops with Pagination
- How to display pagination links for WP_User_Query?
- Implementing a general Table of Content across single paginated post pages
- Pagination: How do I always show ‘previous’?
- WordPress category & taxonomy loop with pagination
- Static front page with recent posts pagination
- Paginate tags page
- How to display next and prev pagination links with WP_User_Query?
- Custom taxonomy list and sortby letter pagination problem
- Pagination not working Search posts
- Pagination adding extra posts only on page 2
- paginate_links() outputs extra empty pages on custom loop
- When to check for max_num_pages using WordPress REST API?
- Adding pagination to a custom archive template
- How to make my pagination loop continuously?
- add spans and characters into paginate_links
- wordpress Next/Previous post in same category not working
- WordPress Pagination not working, any ideas?
- Altering next_posts_link(); and previous_posts_link();
- How to disable pagination (next/previous links) on post type archive?
- Wpdb result with pagination
- Blog post per page setting conflicting with custom WP_Query?
- How to stop WordPress returning 404 on paginated pages after using add_rewrite_rule()?
- Invalid previous pagination links generated from paginate_links()
- Pagination not working on custom page
- Pagination for multiple loops
- Multiple Loops on category.php with pagination on last loop
- 404 when using pagination in a category
- Custom Post Types strange pagination problem
- Start WP Pagination From Number 1 in URL
- paginate_links() don’t properly work in search.php?
- Use two different post_per_page limits with infinite scroll
- Wp-pagenavi giving page not found on clicking page 2
- How can I change pagination numbers with next and back button?
- Pagination on and tag.php not working
- Can I use paginate_links() to add a pagination list, yet prevent it from inserting links?
- Page links are not working after moving domain [closed]
- Frontpage pagination by week
- Problem when I try to insert pagination
- pagination broken – clicking next displays “page not found”
- pagination links not displaying
- Page navi for template page
- How to replace pagination with Next/Previous for multi page posts?
- Disable and redirect pagination of Home
- How to hide empty pagination button when no previous page
- Work arounds for conditional checks inside the loop in search.php?
- WP_User_Query counter not updating with pagination
- Remove Number Of Pagination [closed]
- I would like help getting my pagination to work
- Posts are not showing up on next page.
- Need help on wordpress pagination script
- Update Gallery Randomly in every hour with no duplicates?
- Custom page pagination based on Kriesi pagination
- Test for if you’re on 1st page of paginated post (with nextpage quicktag)
- 404 error Custom search results page for custom post types with friendly URL
- Pagination issue [duplicate]
- WordPress Numeric Pagination with Query String [duplicate]
- Intercepting $_GET variable from custom pagination
- Default pagination in Home/Front page
- Making a Killer wp_link_pages
- pagination leads to 404 page
- Show pagination in WP_Query
- Search results stuck on page 1
- How to change `page` slug in pagination? on a specific pagination result (not globally)