我正在为我的公司网站使用wordpress,但我想完全删除评论功能,所以不要只是在每个页面中取消选中“alow comments”。
我做了一些googeling并说我应该删除这行代码:
<?php comments_template(); // Get wp-comments.php template ?>
此代码应位于page.php中,但我无法找到此代码。 也许这是在旧版wordpress中做到这一点的方法吗?
有没有人知道如何删除它? :)
答案 0 :(得分:0)
您必须删除模板中所有<?php comments_template(); ?>
中的content*.php
以及if ( comments_open() ) .. endif
答案 1 :(得分:0)
由于您无法在页面模板中找到comments_template();
,请检查页面使用的内容模板内部。
get_template_part
函数看起来像这样:
<?php get_template_part( 'content', 'single' ); ?>
用破折号加入这两个参数并检查该模板(在上面的例子中,你会检查content-single.php)。
如果你仍然找不到comments_template();
,也许你的页面真的是帖子,那么在Single Post模板(single.php)中查找该评论功能并找到它的内容模板(与我们一样)有一页)。