Last active
October 10, 2016 21:40
-
-
Save stephanieleary/46ac65a5498dcd6f6643df93d1314d8b to your computer and use it in GitHub Desktop.
Redirect user to primary blog dashboard if not superadmin or not allowed on this blog
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 | |
add_filter( 'login_redirect', 'tees_subsite_login_redirect', 100, 3 ); | |
function tees_subsite_login_redirect( $redirect_to, $request_redirect_to, $user ) { | |
if ( !is_user_member_of_blog() || ( is_main_site() && !is_super_admin() ) ) { | |
$redirect_to = get_admin_url( get_userdata( $user->ID )->primary_blog ); | |
} | |
return $redirect_to; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment