最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - How to make a page both “private” and “password protected”

programmeradmin2浏览0评论

I’m working on a website which requires these two type of access for each post. (I mean, each post can be viewable in both of these cases)

1- Registered users in specific groups should be able to view the post.

2- Non-registered users should be able to view the post using a password.

I tested different plugins and settings to implement these scenarios but with no success. Any help?

I’m working on a website which requires these two type of access for each post. (I mean, each post can be viewable in both of these cases)

1- Registered users in specific groups should be able to view the post.

2- Non-registered users should be able to view the post using a password.

I tested different plugins and settings to implement these scenarios but with no success. Any help?

Share Improve this question asked Jun 7, 2019 at 14:14 SiaSia 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

Im really inexperienced with wordpress but i googled a few sec on google and maybe this will help.

function is_user_logged_in() {

    $user = wp_get_current_user();

 //Try to detect if the user is in a group here

    return $user->exists();

}

Maybe you can try to do something with the page if the user is detected as user and in what group it is.

Source: https://developer.wordpress/reference/functions/is_user_logged_in/

发布评论

评论列表(0)

  1. 暂无评论