Iâm having issues with my pagination in wordpress. Whenever I navigate to my archive section (news category), pagination works correctly. But, the issue lies with the plugin Iâm using to generate a category specific archive. This plugin is dependant on permalink structure being:
/%cateogry%/%year% /%monthnum% /%postname%/
When I click on the link âDecember 2010â (which is supposed to display a list of posts dated in Dec. 2010 from the ânewsâ category), the plugin passes a url that looks like:
www.my-site.com/news/2010/12/
That url causes the pagination to stop working because the link to page 2 looks like:
www.my-site.com/news/2010/12/page/2/
Is there a way to get this to work regardless of the category name change? Iâm using multiple categories
Example:
Working
News archive: www.my-site.com/news/
Page 2: www.my-site.com/news/page/2/
NOT Working (after plugin does its thing)
News archive (Dec 12): www.my-site.com/news/2010/12/page/2/
I did more research and found a plugin that corrects the pagination issues with multiple categories. To summarize, I am using using a plugin called
WordPress Category Archive – http://www.wordpress.org/extend/plugins/wp-category-archive/
to display my category specific archive. There were some issues with pagination due to the year/month being included in the url.
The Solution: A plugin called
Category Pagination fix – http://wordpress.org/extend/plugins/category-pagination-fix/
Everything is working perfectly now! Hope this helps others. Thanks 🙂