Dazu muss man nur diesen Code hier am anfang der functions.php des Themes hineninkopieren.
<?php function ping_count() { global $id; $comments_by_type = &separate_comments(get_comments('post_id=' . $id)); return count($comments_by_type['pings']); } function comment_count() { global $id; $comments_by_type = &separate_comments(get_comments('post_id=' . $id)); return count($comments_by_type['comment']); } add_filter('get_comments_number', 'comment_count', 0); ?>
Besonders Sinnvoll ist dies wenn man die Trackbacks/Pingbacks als Liste über/unter den Kommentaren anzeigt.
Mit
<?php echo ping_count();?>
kann man die Anzahl der Track-/Pingbacks angeben.