Created
November 1, 2013 15:24
-
-
Save JiveDig/7267069 to your computer and use it in GitHub Desktop.
Redirect user after login - admins to dashboard and other users elsewhere
This file contains hidden or 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
// Redirect admins to the dashboard and other users elsewhere | |
// @link http://www.remicorson.com/tip-redirect-a-wordpress-user-after-login/ | |
add_filter( 'login_redirect', 'xxx_login_redirect', 10, 3 ); | |
function xxx_login_redirect( $redirect_to, $request, $user ) { | |
// Is there a user? | |
if ( is_array( $user->roles ) ) { | |
// Is it an administrator? | |
if ( in_array( 'administrator', $user->roles ) ) | |
return home_url( '/wp-admin/' ); | |
else | |
return home_url(); | |
// return get_permalink( 83 ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment