Tagged Questions
0
votes
1answer
41 views
Customizing Comments on Posts
I have implemented custom code for generating comments on post page using callback function in functions.php.
function MYTHEME_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ...
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 ...
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., ...