Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryOJob/0f33bfcae6a2070438668ad9a6823969 to your computer and use it in GitHub Desktop.
Save MaryOJob/0f33bfcae6a2070438668ad9a6823969 to your computer and use it in GitHub Desktop.
Redirect Users After Login For WordPress
<?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