Ok. It didn’t fail. Just didn’t make any difference. Am I supposed to be adding any other code to display the comments under the posts?
I tried:
<?php if ($comments) { ?>
<?php foreach ($comments as $comment) { ?>
<div class="comment"><li id="comment-<?php comment_ID() ?>">
<div class="title"><?php comment_text() ?></div>
"> <?php comment_type(); ?> <?php _e("by"); ?> <?php comment_author_link() ?></div>
<?php } // end for each comment ?>
<?php } else { // this is displayed if there are no comments so far ?>
<?php _e("Make a comment, dammit!"); ?>
<?php } ?>
after the comments pop up link, but all I get is “Make a comment, dammit” appear at the bottom of the post, even when there are comments.