有时候在特殊情况下咱们的个人网站评论模块得隐藏起来,那么对于WordPress来说实现起来其实很简单,只需要调用wordPress的is_user_logged_in()函数即可。
使用教程:
在single.php加载评论模块的位置套上是否登录的判断即可,这里以子比主题为例,把下面代码修改一下
//评论模块
comments_template('/template/comments.php', true);
上面代码修改成下面这样就行
//评论模块
if (is_user_logged_in()){
comments_template('/template/comments.php', true);
}
© 版权声明
THE END
暂无评论内容