Tagged Questions
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 ...