Closed. This question needs to be more focused. It is not currently accepting answers.admin管理员组文章数量:1430742
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
本文标签: pluginsRestricting users to a specific front end page
版权声明:本文标题:plugins - Restricting users to a specific front end page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745539584a2662431.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论