好吧,我想出来了。这需要一些挖掘和许多不好的建议。解决方案其实很简单。只需在主题文件中替换此内容:
Where you have this:
<div class="comments">
<?php comments_template(); ?>
</div>
Replace it with this:
<div class="comments">
<?php if ( comments_open() ) : ?><br /><p><br /><?php comments_template(); ?><br /></p><br /><?php endif; ?>
</div>
Note: 我觉得这有点讽刺,但如果你将主题切换到二十一(在3.2 Beta版中取代二十)它不会像他们建议的那样删除评论。
您可以将用于comments\\u popup\\u链接的其他代码替换为类似的条件,如下所示:
<div class="comments">
<?php if ( comments_open() ) : ?><br /><p><br /><?php comments_popup_link(\'0\', \'1\', \'%\'); ?><br /></p><br /><?php endif; ?>
</div>
我不确定主题审查是如何100%工作的,但主题检查插件说您通过了!这是一个屏幕截图。
祝你好运