Einzelnen Beitrag anzeigen
Alt 10.08.2008, 13:16   #17 (permalink)
infected
PostRank: 7
 
Benutzerbild von infected
 
Registriert seit: 09.07.2006
Ort: Nettetal
Beiträge: 720
Zitat:
Zitat von infected Beitrag anzeigen
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>

...
__________________
There are only 10 types of people in the world: those who understand binary and those who don't.
infected ist offline   Mit Zitat antworten