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

plugins - Restricting users to a specific front end page

programmeradmin0浏览0评论
Closed. This question needs to be more focused. It is not currently accepting answers.

Want to improve this question? Update the question so it focuses on one problem only by editing this post.

Closed 5 years ago.

Improve this question

I am looking for a way to restrict users of a certain role to only be able to access one page on my wordpress site. When a user of the role logs in they should be redirected to the page and they should not be able to access any other pages. I have tried multiple plugins that can restrict pages to users, but I have not found one that can restrict users to pages. Does this functionality exist within Wordpress and how would I implement it if it does?

Closed. This question needs to be more focused. It is not currently accepting answers.

Want to improve this question? Update the question so it focuses on one problem only by editing this post.

Closed 5 years ago.

Improve this question

I am looking for a way to restrict users of a certain role to only be able to access one page on my wordpress site. When a user of the role logs in they should be redirected to the page and they should not be able to access any other pages. I have tried multiple plugins that can restrict pages to users, but I have not found one that can restrict users to pages. Does this functionality exist within Wordpress and how would I implement it if it does?

Share Improve this question asked Apr 30, 2019 at 0:35 user-2147482633user-2147482633 33 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You'd have to add a function during the init action of WP. There you'll get the current user and check whether they have a specific role assigned to them and redirect to the page when they do.

add_action('init', function () {
    $user = wp_get_current_user();
    $role = 'your role';

    if (in_array($role, $user->roles)) {
        wp_redirect('url');
    }
});

WordPress Function References:

  • https://developer.wordpress/reference/functions/add_action/
  • https://developer.wordpress/reference/functions/wp_get_current_user/
  • https://developer.wordpress/reference/functions/wp_redirect/

Relevant SE posts:

  • https://stackoverflow/questions/36720949/get-user-role-by-id-wordpress
发布评论

评论列表(0)

  1. 暂无评论