简体   繁体   English

在 wordpress 主页上显示评论

[英]Show comments on wordpress home page

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.我正在尝试在帖子的主页 stream 上显示每个帖子的评论。

EDIT: Just for the record, I'm using twenty ten theme.编辑:为了记录,我使用的是二十个主题。

Try this before the <?php endwhile; ?><?php endwhile; ?> <?php endwhile; ?> of the loop in loop.php: <?php endwhile; ?> loop.php 中的循环:

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

Try this:尝试这个:

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

There is a much simpler way that doesn't involve editing php code.有一种更简单的方法,不需要编辑 php 代码。 First make sure you can create comments on other pages and if that is working, go back to the home page.首先确保您可以在其他页面上创建评论,如果可以,go 返回主页。

On the top right, click the gear icon to show settings and near the bottom of settings change the "page attributes" "template" from "front page template" to "default template".在右上角,单击齿轮图标以显示设置,并在设置底部附近将“页面属性”“模板”从“首页模板”更改为“默认模板”。 Save and you will have comments.保存,您将有评论。

HOWEVER you may lose other features of the home page (you can always change the template back).但是,您可能会失去主页的其他功能(您可以随时更改模板)。 For me I didn't lose anything.对我来说,我没有失去任何东西。

Understand that a normal wordpress blog is intended to have comments on the blogs (posts), but not on the home page.了解正常的 wordpress 博客旨在对博客(帖子)进行评论,而不是在主页上。 By default you shouldn't even have comments on any pages (just posts) but that is easily enabled.默认情况下,您甚至不应该在任何页面上发表评论(只是帖子),但这很容易启用。 That is why normally there are no comments allowed but if you have a one page site this is a problem.这就是为什么通常不允许评论的原因,但如果您有一个单页网站,这就是一个问题。

Also note that there are many different themes and some do allow comments on the home page.另请注意,有许多不同的主题,有些确实允许在主页上发表评论。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM