评论登录可见

隐藏WordPress评论模块,只有登录用户才可查看的方法

国内政策原因,个人备案不让网站带有评论功能,但是个人博客不开放评论功能似乎又没有灵魂,所以我们可以设置成只有登录的用户才显示评论区域内容。具体的方法如下:

找到你主题的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就是判断用户有没有登录。如果登录就显示评论模块,没登录就不会加载。

当然,这样修改后,你需要给网站开放注册功能才行。你可能对下面这几篇文章也会感兴趣:

本文代码由知更鸟分享。

给本文打分 post
滚动至顶部