Forked from andrewlimaza/redirect_users_after_login.php
Last active
May 15, 2020 11:25
-
-
Save MaryOJob/0f33bfcae6a2070438668ad9a6823969 to your computer and use it in GitHub Desktop.
Redirect Users After Login For WordPress
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 // DO NOT COPY THIS LINE | |
/** | |
* Redirect all non-admin user's after they login to your website's home page. | |
* Documentation for login_redirect filter - https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect | |
*/ | |
function pmpro_redirect_after_login( $redirect_to, $request, $user ) { | |
if ( isset( $user->roles ) && is_array( $user->roles ) ) { | |
//check if user is not an admin. | |
if ( !in_array( 'administrator', $user->roles ) ) { | |
$redirect_to = home_url(); | |
} | |
} | |
return $redirect_to; | |
} | |
add_filter( 'login_redirect', 'pmpro_redirect_after_login', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment