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.