分类
如何给WordPress的Page页面增加评论?
1.进入wordpress后台>页面>找到你要开启评论的页面>点击:允许评论 (如下图)
2.打开page模板相应位置加入判断页面是否有评论的代码
<?php
$post_info = get_post(get_the_ID(), ARRAY_A);
if($post_info['comment_count']){
?>
<div class="rh-post-wrapper mb20 mt20">
<?php comments_template(); ?>
</div>
<?php }else{?>
<?php
}
?>
以上为开发模板写的代码,换成以下:
<?php
$post_info = get_post(get_the_ID(), ARRAY_A);
if($post_info['comment_count']){
?>
如果有评论就显示
<?php comments_template(); ?>
<?php }else{?>
不显示
<?php
}
?>