Zitat von malo.connyDafür ist ein Plugin notwendig
Notwendig ist es nicht. Kann sicher jeder im Template selbst reinbasteln. Ich habs z.B. so gelöst (comments.php):
PHP
...
<!-- You can start editing here. -->
<?php if ($comments) : ?>
<h3 id="comments">Kommentare:</h3>
<ol class="commentlist">
<?php $comment_count=1; ?>
<?php foreach ($comments as $comment) : ?>
<li class="commentbody" id="comment-<?php comment_ID() ?>">
<?php comment_author_link() ?>
<?php if ($comment->comment_approved == '0') : ?>
<em>Your comment is awaiting moderation.</em>
<?php endif; ?>
<br />
<a class="commentlink" href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('l, d. F Y') ?> <?php comment_time('H:i') ?></a> <?php edit_comment_link('e','',''); ?>
<div class="commentcount"><?php echo $comment_count; ?></div>
<?php comment_text() ?>
</li>
<?php $comment_count++; ?>
<?php endforeach; /* end for each comment */ ?>
...
Alles anzeigen
Zunächst wird vor Ausgabe der Kommentare (und diese Schleife gibt es in jedem Theme) eine eigene Variable als Counter definiert:
Innerhalb der Kommentar-Ausgabe-Schleife kann man diese Variable dann in einem beliebigen Format ausgeben:
und schließlich wird (noch innerhalb der Schleife) der Kommentar-Counter um 1 erhöht:
Fertig. Also einfach nur eine kleine Schleife, wie man sie auch aus Basic, C usw. kennt. Ein Plug-In ist für sowas schon recht übertrieben und vor allem ist man durch den Einbau in die Templates wesentlich flexibler.