我正在为我的公司网站使用wordpress,但我想完全删除评论功能,而不仅仅是取消选中每个页面中的“允许评论”。
我做了一些谷歌搜索,说我应该删除这行代码:
<?php comments_template(); // Get wp-comments.php template ?>
此代码应位于 page.php 中,但我无法找到此代码。也许这是在旧版本的 wordpress 中做到这一点的一种方式?
有谁知道我可以如何删除它?:)
由于您无法comments_template();
在页面模板中找到,请检查页面使用的内部内容模板。
该get_template_part
函数看起来像这样:
<?php get_template_part( 'content', 'single' ); ?>
通过破折号连接这两个参数并检查该模板(在上述情况下,您将检查 content-single.php)。
如果您仍然找不到comments_template();
,可能您的页面确实是帖子,因此请在 Single Post 模板 (single.php) 中查找该评论功能并找到其内容模板(与我们处理页面的方式相同)。
您必须删除模板<?php comments_template(); ?>
中的所有内容以及两者之间的所有内容content*.php
if ( comments_open() ) .. endif