Page template that redirects user based on role

I'm trying to come up with a wordpress page template (acting as a landing page) that redirects a user to another pa

I'm trying to come up with a wordpress page template (acting as a landing page) that redirects a user to another page based on their role.
ex. user with role editor goes to landing page and is redirected to "/editors-page/" user with role subscriber goes to landing page and is redirected to "/subscribers-page/"

I've come across so many plugins and custom functions that talk about redirecting at login but I'm using multisite and there are some complications using any of those examples so I've landed on the above solution.

Any help would be wonderful! Thanks so much!

I'm trying to come up with a wordpress page template (acting as a landing page) that redirects a user to another page based on their role.
ex. user with role editor goes to landing page and is redirected to "/editors-page/" user with role subscriber goes to landing page and is redirected to "/subscribers-page/"

I've come across so many plugins and custom functions that talk about redirecting at login but I'm using multisite and there are some complications using any of those examples so I've landed on the above solution.

Any help would be wonderful! Thanks so much!

Share Improve this question asked Sep 23, 2019 at 16:18 user3311868user3311868 134 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can use current_user_can() to check the user roles. https://developer.wordpress/reference/functions/current_user_can/

To check if the user is editor or administrator:

<?php if( current_user_can('editor') || current_user_can('administrator') ) {  ?>
    // Stuff here for administrators or editors
<?php } ?>

Then to redirect you can use this:

header('Location: '.$newURL);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745136465a4613224.html

相关推荐

  • Page template that redirects user based on role

    I'm trying to come up with a wordpress page template (acting as a landing page) that redirects a user to another pa

    1小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信