Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

So I've inserted the following code to the template loop (in the correct place) but it is not outputting any comments. Any clue why?

<?php
$withcomments = true; // force comments form and comments to show on front page
comments_template( '', true );
?>

I'm trying to display comments for each post on the main-home-page stream of posts.

EDIT: Just for the record, I'm using twenty ten theme.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
574 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try this before the <?php endwhile; ?> of the loop in loop.php:

<?php
  $withcomments = "1";
  comments_template();
?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...