CalebBarnes / nextwp

http://nextwp.org/
7 stars 0 forks source link

Update Archive pagination to use route params for page numbering instead of searchParams #6

Closed CalebBarnes closed 7 months ago

CalebBarnes commented 7 months ago

currently the pagination is done with the page searchParam like this: /blog?page=2

that paths should look something like this so that SSG these routes in generateStaticParams:

/blog /blog/2 /blog/3 /blog/4

etc

Same for custom post type archives

CalebBarnes commented 7 months ago

Completed