The paginate-comments-links tag has no wiki summary.
0
votes
1answer
188 views
paginate_comments_links() not working
I'm using paginate_comments_links() to get all the comments by the current user:
<?php
global $current_user;
get_currentuserinfo();
$userid = $current_user->ID;
$args = array(
'user_id' ...
4
votes
1answer
260 views
Aggregate comments, with pagination
I want to build a page that would display all comments, regardless of which post they're attached to. I also want that page to be paginated, since it'll potentially have 10,000+ comments.
I'm not ...
5
votes
2answers
216 views
Reverse comment pagination numbers
I would like to reverse the comment pagination numbers so that the newest comments show on page 1 instead of the last page. I did an array_reverse for the comments_array and set the Wordpress ...
4
votes
1answer
49 views
How can I see all of a post's comments on a single page as a reader, if pagination is enabled?
Is there an URL I can access, or an argument that can be passed, to disable pagination on the reader's side?
The blog uses standard Wordpress comment pagination, i.e., ...