Buka file comments.php pada themes wordpress anda di Dashboard >> Design >> Theme Editor, lalu cari comment loop seperti dibawah ini :
foreach ($comments as $comment) : ?>
// Comments are displayed here
endforeach;
Kemudian ganti dengan comment loop seperti dibawah ini :
<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>
Kemudian klik update options untuk menyimpan perubahan, lalu lihat hasilnya, sekarang pada psoting blog wordpress anda, trackback akan terpisah dari komentar
Dari berbagai sumber