ok, figured it out… just in case anyone else runs into this issue, the correct syntax for adding parameters to the wp_list_comments is different from what i had.
was:
<?php wp_list_comments(array('type=comment', 'avatar_size'=>48, 'reply_text'=>'Reply to This Comment')); ?>
correct:
<?php wp_list_comments('type=comment&avatar_size=48&reply_text=Reply to This Comment'); ?>
edit: ok, i give up…no backticks are working for me now for the code.
Your post is old but here is the fix;
<?php wp_list_comments(array(‘type’=>’comment’, ‘avatar_size’=>’248’, ‘reply_text’=>’Reply to this Comment’)); ?>
Best Regards.
Jared Ritchey
(@chazbeaner)
16 years, 12 months ago
I’m trying to separate the three types (using Yoast’s Tweetback plugin for the third type) but after separating out the loop, my pingbacks and appearing as reg comments and under the pingback section. see here:
http://www.wicked-pr.com/blog/social-media/seesmic-desktop-twitter-client-improves-twhirl-replaces-tweetdeck-731.html
Here is my comment loop:
Not really sure what is happening or why. Thoughts?