国内政策原因,个人备案不让网站带有评论功能,但是个人博客不开放评论功能似乎又没有灵魂,所以我们可以设置成只有登录的用户才显示评论区域内容。具体的方法如下:
找到你主题的single.php文件,例如Twenty Seventeen主题,找到类似于下面这段代码。
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 } ?>
if is_user_logged_in就是判断用户有没有登录。如果登录就显示评论模块,没登录就不会加载。
当然,这样修改后,你需要给网站开放注册功能才行。你可能对下面这几篇文章也会感兴趣:
- 三款WordPress邀请码插件_网站邀请注册链接生成
- WordPress会员中心插件Ultimate Member使用教程
- WordPress网站注册时用户自己设置密码的几种方法
- WordPress网站需要注册会员并登录后才能访问的方法
本文代码由知更鸟分享。