使用comment_template()不能在首页显示评论的解决方法
WORDPRESS 网站调用评论框,我们会使用以下的函数进行直接调用:
<?php
comments_template();
?>
但是这个函数只能在文章页或者PAGE页显示评论框,无法在网站首页显示评论框。那么如何在网站首页调用出评论框呢?
我们可以直接使用以下的函数进行调用:
<?php
$withcomments = "1";
comments_template();
?>
就是在普通的评论框调用代码里添加一行$ withcomments=‘1’。这样再放在首页代码里即可。