next-wordpress-starter icon indicating copy to clipboard operation
next-wordpress-starter copied to clipboard

Category Archives page only show 10 posts and no Pagination

Open huynhtan1808 opened this issue 3 years ago • 4 comments

Hi, I recently found out that the Categories Archives page only shows 10 posts and does not have pagination. Can you check it?

Bonus: How Can I make Featured images show in Related Posts?

huynhtan1808 avatar May 27 '22 06:05 huynhtan1808

hey will look into the 10 posts issue, thanks. for the UI check out my comment here:

https://github.com/colbyfayock/next-wordpress-starter/issues/358

colbyfayock avatar Jun 06 '22 15:06 colbyfayock

@colbyfayock Hello, Can you please check the 10 posts in the Category page?

huynhtan1808 avatar Sep 09 '22 06:09 huynhtan1808

Hi, @colbyfayock , any update on this? just show 10 post only on category page? and no pagination

handipriyono avatar Jul 09 '23 02:07 handipriyono

pagination as you've noticed isnt implemented on categories or i dont think any archive-like page

i likely won't be doing major work on the starter "as is" as i've started slowly working on migrating it over to the App Router

https://github.com/colbyfayock/next-wordpress-starter/pull/477

if you want to see how it's being done in the current project for the homepage, you can check out this function for getting paginated posts:

https://github.com/colbyfayock/next-wordpress-starter/blob/main/src/lib/posts.js#L388

which if repurposed for categories or anything else, you should be able to plug in the result into the pagination prop of the archive template:

https://github.com/colbyfayock/next-wordpress-starter/blob/main/src/templates/archive.js#L26 https://github.com/colbyfayock/next-wordpress-starter/blob/main/src/pages/categories/%5Bslug%5D.js#L18

would be happy to take a PR for this, as likely the functionality would be needed for the migrated version whenever i get to that part of it

colbyfayock avatar Jul 09 '23 03:07 colbyfayock