WORDPRESS 网站调用评论框,我们会使用以下的函数进行直接调用:
<?php
comments_template();
?>
comments_template();
?>
但是这个函数只能在文章页或者PAGE页显示评论框,无法在网站首页显示评论框。那么如何在网站首页调用出评论框呢?
我们可以直接使用以下的函数进行调用:
<?php
$withcomments = "1";
comments_template();
?>
$withcomments = "1";
comments_template();
?>
本文摘自网络,不代表短经典网立场 https://www.duanjingdian.com/591.html