| 586 | | // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile. |
| 587 | | if ( is_multisite() && !get_active_blog_for_user($user->id) ) |
| 588 | | $redirect_to = user_admin_url(); |
| 589 | | elseif ( is_multisite() && !$user->has_cap('read') ) |
| 590 | | $redirect_to = user_admin_url(); |
| 591 | | elseif ( !$user->has_cap('edit_posts') && ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) |
| 592 | | $redirect_to = admin_url('profile.php'); |
| | 586 | if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) { |
| | 587 | // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile. |
| | 588 | if ( is_multisite() && !get_active_blog_for_user($user->id) ) |
| | 589 | $redirect_to = user_admin_url(); |
| | 590 | elseif ( is_multisite() && !$user->has_cap('read') ) |
| | 591 | $redirect_to = user_admin_url(); |
| | 592 | elseif ( !$user->has_cap('edit_posts') ) |
| | 593 | $redirect_to = admin_url('profile.php'); |
| | 594 | } |