Title: Separating Comments, Pingbacks, Tweetbacks
Last modified: August 19, 2016

---

# Separating Comments, Pingbacks, Tweetbacks

 *  Resolved [chazbeaner](https://wordpress.org/support/users/chazbeaner/)
 * (@chazbeaner)
 * [17 years ago](https://wordpress.org/support/topic/separating-comments-pingbacks-tweetbacks/)
 * 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](http://www.wicked-pr.com/blog/social-media/seesmic-desktop-twitter-client-improves-twhirl-replaces-tweetdeck-731.html)
 * Here is my comment loop:
 *     ```
       <?php if ( have_comments() ) : ?>
   
       <?php if ( !empty($comments_by_type['comment']) ) : ?>
       	<a class="anchorFix" name="comments"></a>
       	<ul class="commentlist" id="singlecomments">
       	<?php wp_list_comments(array('type=comment', 'avatar_size'=>48, 'reply_text'=>'Reply to This Comment')); ?>
       	</ul>
       	<?php endif; ?>
   
       <!-- show the tweetbacks -->	
   
       	<?php if ( ! empty($comments_by_type['tweetback']) ) : ?>
       		<a class="anchorFix" name="comments"></a>
       		 <h3 id="pings">Tweetbacks</h3>
       		  <ul class="commentlist" id="singlecomments">
       		  <?php wp_list_comments('type=tweetback'); ?>
       		  </ul>
       		<?php endif; ?>
   
       <!-- show the trackbacks/pingback -->
   
       	<?php if ( ! empty($comments_by_type['pings']) ) : ?>
       		<a class="anchorFix" name="comments"></a>
       	  <h3 id="pings">Links to this Article</h3>
       	  <ul class="commentlist" id="singlecomments">
       	  <?php wp_list_comments('type=pings'); ?>
       	  </ul>
       	<?php endif; ?>
       ```
   
 * Not really sure what is happening or why. Thoughts?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [chazbeaner](https://wordpress.org/support/users/chazbeaner/)
 * (@chazbeaner)
 * [16 years, 12 months ago](https://wordpress.org/support/topic/separating-comments-pingbacks-tweetbacks/#post-1045124)
 * 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&amp;avatar_size=48&amp;reply_text
   =Reply to This Comment'); ?>`
 * edit: ok, i give up…no backticks are working for me now for the code.
 *  [WP Realty](https://wordpress.org/support/users/php4ever/)
 * (@php4ever)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/separating-comments-pingbacks-tweetbacks/#post-1045294)
 * 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

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Separating Comments, Pingbacks, Tweetbacks’ is closed to new replies.

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [pingbacks](https://wordpress.org/support/topic-tag/pingbacks/)

 * 2 replies
 * 2 participants
 * Last reply from: [WP Realty](https://wordpress.org/support/users/php4ever/)
 * Last activity: [16 years, 6 months ago](https://wordpress.org/support/topic/separating-comments-pingbacks-tweetbacks/#post-1045294)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
