在wordpress中是否有一种方法只允许人们查看帖子(如果他们是用户)?所以我有一个wordpress博客,我只需要提供获取邀请码并注册用户的用户...有没有办法将帖子和页面锁定到登录用户
答案 0 :(得分:1)
http://codex.wordpress.org/Function_Reference/is_user_logged_in 这可以在wordpress loop.php文件中实现:
<?php
if (!is_user_logged_in() ): ?>
<p>This content is restricted to members only</p>
<?php else: ?>
// the regular wordpress loop
<?php endif; ?>
答案 1 :(得分:0)
Wordpress为您提供了一种发布为私有的方式(默认为公共)。 无需更改代码。
然后用户必须登录并能够查看它。