• I know this has been beaten to death, but none of the other threads helped me. I want to display all of my comments. Here is the relevent code (i think) from my comments.php.

    <!– You can start editing here. –>

    <?php if ($comments) : ?>
    <h3 id=”comments”><?php comments_number(‘No Responses’, ‘One Response’, ‘% Responses’ );?> to “<?php the_title(); ?>”</h3>

    <ol class=”commentlist”>

    <?php foreach ($comments as $comment) : ?>

    <li class=”<?php echo $oddcomment; ?>” id=”comment-<?php comment_ID() ?>”>
    <div class=”cmtinfo”>on <?php comment_date(‘d M Y’) ?> at <?php comment_time() ?> <small class=”commentmetadata”>” title=””>  <?php edit_comment_link(‘edit this’,”,”); ?></small><cite><?php comment_author_link() ?></cite></div>
    <?php if ($comment->comment_approved == ‘0’) : ?>
    Your comment is awaiting moderation.
    <?php endif; ?>

    <?php comment_text() ?>

    <?php /* Changes every other comment to a different class */
    if (‘alt’ == $oddcomment) $oddcomment = ”;
    else $oddcomment = ‘alt’;
    ?>

    <?php endforeach; /* end for each comment */ ?>

    My site is http://www.wiitod.com

    Please help me, thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Comments not displaying’ is closed to new replies.