在wordpress主页上显示评论 [英] Show comments on wordpress home page

查看:110
本文介绍了在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();
?>

这篇关于在wordpress主页上显示评论的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆