为 WordPress 设置评论模块登录可见
- 时间:2020-05-17 12:16:18
- 分类:网络文摘
- 阅读:115 次
对于 wordpress 而言,虽然可以设置登录才能发表评论,但用户如果不登录,也可以正常浏览其他人的留言评论内容。据说现在个人备案的网站不允许有评论互动功能,我们可以简单修改一下wordpress主题,让wordpress的评论模块只有在登录状态下才可见。
这里需用到 WordPress 判断是否登录的函数:is_user_logged_in()
用判断函数把评论模块包裹起来就行了。
以 WordPress 默认主题 Twenty Seventeen 为例,打开主题正文模板文件 single.php,找到类似的:
- if ( comments_open() || get_comments_number() ) :
- comments_template();
- endif;
修改为:
- if ( is_user_logged_in()){
- if ( comments_open() || get_comments_number() ) :
- comments_template();
- endif;
- }
之后,只有在登录状态下才能看见评论模块及评论内容。
其它主题方法类似,比如:
- <?php if ( is_user_logged_in()){ ?>
- <?php if ( comments_open() || get_comments_number() ) : ?>
- <?php comments_template( '', true ); ?>
- <?php endif; ?>
- <?php } ?>
原文:https://zmingcx.com/wordpress-login-visible-comments.html
推荐阅读:5 Corporate Blogs that Bloggers Can Learn From 5 Rules to Create Successful Crypto-Related Content How to Professionally Assess the Current Quality of Your Brand’s Three Ways a Blog can Help Boost Your Real Estate Business Hiring CGI Influencers Now a Trend for Brands: What it Means for How to Create Online Courses on Your Blog How Does Link Building Support Blog Growth? What’s a Mukbang and Why It’s Not Really That Great Content Ideas for New Blogs During the Pandemic ‘Labeled For Reuse’ Gone: The Latest Disarming Change on Google
- 评论列表
-
- 添加评论