在wordpress主页上显示评论

在wordpress主页上显示评论

问题描述:

所以我已经插入下面的代码到模板循环(在正确的地方),但它不输出任何注释。任何线索为什么?

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.

编辑:
只是为了记录,我使用二十个主题。

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

<?php endwhile之前尝试一下; >

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

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