Created
October 23, 2020 20:00
-
-
Save brycejacobson/5a46085ae769d45c266ba36688457673 to your computer and use it in GitHub Desktop.
Redirect Employee After Login
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Redirect user after successful login. | |
* | |
* @param string $redirect_to URL to redirect to. | |
* @param string $request URL the user is coming from. | |
* @param object $user Logged user's data. | |
* @return string | |
*/ | |
function my_login_redirect( $redirect_to, $request, $user ) { | |
//is there a user to check? | |
if ( isset( $user->roles ) && is_array( $user->roles ) ) { | |
//check for admins | |
if ( in_array( 'employees', $user->roles ) ) { | |
// redirect them to the employees page. | |
return home_url('/employees/'); | |
} else { | |
// redirect them to the default place. | |
return $redirect_to; | |
} | |
} else { | |
return $redirect_to; | |
} | |
} | |
add_filter( 'login_redirect', 'my_login_redirect', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment