go41

the info you need to know


von Joern
Keine Kommentare

This is my code for comments:Code:<?php if ($comments) : ?>   <h3 id="comments"><?php comments_number('No Comment', '1 Comment', '% Comments' );?></h3>   <ul class="commentlist">   <?php foreach ($comments as $comment) : ?>   <?php    $isByAuthor = false;    if($comment->comment_author_email == get_the_author_email()) {    $isByAuthor = true;    }?>      <div class="commentlist">      <li id="comment-<?php…