Created
March 12, 2019 07:23
-
-
Save feliciaceballos/e5f7c32bbcd65d6ddf04e8ceb267c45c to your computer and use it in GitHub Desktop.
WordPress Login Page redirect to Home Page
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
<?php | |
//remove <?php when you paste inside your functions.php file | |
function admin_login_redirect( $redirect_to, $request, $user ) { | |
global $user; | |
if( isset( $user->roles ) && is_array( $user->roles ) ) { | |
if( in_array( "administrator", $user->roles ) ) { | |
return $redirect_to; | |
} | |
else { | |
return home_url(); | |
} | |
} | |
else { | |
return $redirect_to; | |
} | |
} | |
add_filter("login_redirect", "admin_login_redirect", 10, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment