Anyone get this to work at all? In the new theme, comments are populated using wp_list_comments( array( ‘callback’ => ‘theme_comment’ ) );
and I have no idea where this is looping, so I don’t know where to start counting a new variable. I can alter the layout of the comments in functions.php, but it’s just a function and apparently wordpress is somehow using it only once to populate multiple comments.
If you just want the comment count, why not
get_comments_number()
?UPDATE: