• 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(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.

  • The topic ‘Count comments returned from wp_list_comments()’ is closed to new replies.