Forums
Forums / Fixing WordPress / Count comments returned from wp_list_comments()
(@dcooney)
9 years, 8 months ago
As the title implies, I’m looking for a way to count the total number of comments returned from a wp_list_comments() query.
wp_list_comments()
wp_list_comments(array( 'per_page' => 5, 'callback' => comments_callback, 'type' => 'ol', ));
The query above may return 5 top level comments and 3 replies – is there a way to count the actual total amount returned?
I am hitting wp_list_comments via an ajax call, and would like to know the actual amount of comments I am sending through.
wp_list_comments
The topic ‘Count comments returned from wp_list_comments()’ is closed to new replies.
(@dcooney)
9 years, 8 months ago
As the title implies, I’m looking for a way to count the total number of comments returned from a
wp_list_comments()query.The query above may return 5 top level comments and 3 replies – is there a way to count the actual total amount returned?
I am hitting
wp_list_commentsvia an ajax call, and would like to know the actual amount of comments I am sending through.