大流量卡

WordPress子比主题评论模块未登录隐藏

有时候在特殊情况下咱们的个人网站评论模块得隐藏起来,那么对于WordPress来说实现起来其实很简单,只需要调用wordPress的is_user_logged_in()函数即可。

WordPress子比主题评论模块未登录隐藏

使用教程:

在single.php加载评论模块的位置套上是否登录的判断即可,这里以子比主题为例,把下面代码修改一下

//评论模块
 comments_template('/template/comments.php', true);

上面代码修改成下面这样就行

//评论模块
            if (is_user_logged_in()){
                comments_template('/template/comments.php', true);
            }
© 版权声明
THE END
喜欢就支持一下吧
点赞5打赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容