Archived topic
Previous/Next without enumerating
3 replies · Started by Dave on October 14, 2021
Hi, Is there a way to have just text links (or better yet images like the Infinite Scroll 'More' button) for 'Previous' and 'Next' without listing all the pages. 1 2 ... 656 just looks funny. Thanks!
Also, for reference, here's why Infinite Scroll doesn't work for me -
1) When Jetpack lazy loading is enabled, featured images are not rendered after hitting More
2) When folks land on an archive page or category page other than the 1st, there's no 'previous' button to get to earlier posts
Hi Dave,
You can try adding this CSS:
.nav-links .page-numbers:not(.prev,.next) {
display: none;
}
It effectively hides the page numbers but keeps the Previous and Next links. :D
Perfect, thank you.
No problem. :D