记录一下WordPress如何实现用户登录后可见评论模块,由于一些网站是是个人备案的不能开评论,否则会被整改,是否可以出一个登陆才能看见评论的功能呢?答案是可以的,WordPress如何实现用户登录后可见评论模块,也就是说网站用户登陆后才能看见评论内容,游客是看不见任何的评论内容的。
WordPress登录后方可见评论模块,我们只要用到是否登录的WordPress函数is_user_logged_in(),然后用判断函数把评论模块包裹起来即可。
找到WordPress模板文件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 } ?>
© 版权声明
THE END
暂无评论内容