Zitat:
Zitat von infected Das gehört dann in die comments.php des Themes... |
...also in
wp-
content/themes/deintheme/comments.php
So sieht´s zum Beispiel in meiner comments.php aus:
Code:
...
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<div class="commentmetadata">
<?php sf_show_forum_avatar($comment->comment_author_email); ?>
<strong>Nr.:</strong> <?php echo("$cnr"); ?><br />
<strong>geschrieben von:</strong> <?php comment_author_link() ?><br />
<strong>Datum:</strong> <?php comment_date('d. F Y') ?><br />
<strong>Uhrzeit:</strong> <?php comment_time() ?> Uhr
<?php if ($comment->comment_approved == '0') : ?>
<div class="moderate">Der Kommentar muss erst freigeschaltet werden!</div>
<?php endif; ?>
<br />
<div class="clear" />
<?php comment_text() ?>
</div>
</li>
...