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 questionI 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 questionI 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 badges1 Answer
Reset to default 1You'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
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745539584a4632065.html
评论列表(0条)