Ever wanted to separate trackbacks from your comments so the comments on your blog becomes more readable. Then try this simple to follow tutorial. This is surely to help you.
Procedure:
Note: Do take backup of the file you try this.
01. Open comments.php and find the below code in it:
foreach ($comments as $comment) : ?>
// Comments are displayed here
endforeach;02. Reaplce above code with below code:
<ul class="commentlist">
<?php //Displays comments only
foreach ($comments as $comment) : ?>
<?php $comment_type = get_comment_type(); ?>
<?php if($comment_type == 'comment') { ?>
<li>//Comment code goes here</li>
<?php }
endforeach;
?>
</ul>
?><ul>
<?php //Displays trackbacks only
foreach ($comments as $comment) : ?>
<?php $comment_type = get_comment_type(); ?>
<?php if($comment_type != 'comment') { ?>
<li><?php comment_author_link() ?></li>
<?php }
endforeach;
?>
</ul>
That concludes this simple and useful tutorial. Hope you like it.

Pingback: designfloat.com
Pingback: How to Separate Trackbacks from Comments in Wordpress | Design Newz
Pingback: How to Separate Trackbacks from Comments in WordPress | The best Tutorials
Pingback: How to Separate Trackbacks from Comments in WordPress | WebDevKungfu
Pingback: How to Separate Trackbacks from Comments in Wordpress | Speckyboy Design Magazine
Pingback: Dicembre: preferiti della redazione | Your Inspiration Web
Pingback: Anleitung um Trackbacks und Kommentare auf Wordpress getrennt darzustellen » Gif-Grafiken.de
Pingback: 70 Excellent WordPress Tips And Tutorials From First Three Months Of 2011 | stylishwebdesigner