Show comments on wordpress home page

2019-04-28 08:07发布

问题:

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.

回答1:

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

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


回答2:

Try this:

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