Archived topic
Pagination for Comments with Page Numbers
3 replies · Started by Allen on July 27, 2021
hi
I have followed David's reply here
https://generatepress.com/forums/topic/pagination-for-comments-with-page-numbers-in-generate-press/#post-1654617
But the comment's pagination is displayed as 1 ... 20 21 23.
Can I know how can I make it display ALL in numbers e.g 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Thanks
Hi there,
try this:
<?php paginate_comments_links( array('prev_text' => '‹ Previous', 'next_text' => 'Next ›', 'show_all' => true )); ?>
For more info - here's the codex for that function:
https://developer.wordpress.org/reference/functions/paginate_comments_links/
And it says its supports the same $args as:
https://developer.wordpress.org/reference/functions/paginate_links/
Work perfectly!
Awesome - glad to hear that!