Home › Forums › Support › Customizing Pagination This topic has 5 replies, 2 voices, and was last updated 8 years, 9 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts June 23, 2017 at 8:10 am #337973 Dilip Kumar Hi, I am looking to customize the pagination on my blog. I want to remove the 1,2,3…. pagination and replace it with just “read the next post”. How can I do it? Is it possible to show something like “Show all Posts” and link it to the archives page? Regards Dilip June 23, 2017 at 9:20 am #338010 TomLead Developer Lead Developer Hi there, Try this: .paging-navigation .nav-next, .paging-navigation .nav-previous { display: block; } .nav-links { display: none; } June 23, 2017 at 12:10 pm #338064 Dilip Kumar That seems to have worked to some extent. But how do I add something like “Show all Posts” and link it to the archives page, if it is possible.. June 24, 2017 at 12:14 am #338227 TomLead Developer Lead Developer What page would be the “archives” page? June 25, 2017 at 4:57 am #338628 Dilip Kumar I have created an archives page which has a list of all the posts. This is the one I want to link to. June 25, 2017 at 7:09 pm #338914 TomLead Developer Lead Developer Try this: add_action( 'generate_paging_navigation', 'tu_add_pagination_archives_link' ); function tu_add_pagination_archives_link() { ?> <a href="YOUR URL HERE">Your link text</a> <?php } Adding PHP: https://docs.generatepress.com/article/adding-php/ Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In