Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: login-redirect – BP Profile as Homepage ( broken? )


nit3watch
Participant

@nit3watch

@shawnyuan ** when user log into your website, user is redirected to his/her profile. ** when user tries to move to homepage, user is redirected to his/her profile. **

Here’s the BP Profile as Homepage plug-in:

function bp_profile_homepage()
{
global $bp;
if(is_user_logged_in() && $_SERVER=='/')
{
wp_redirect( $bp->loggedin_user->domain );
}
}
function logout_redirection()
{
global $bp;
$redirect = $bp->root_domain;
wp_logout_url( $redirect );
}
add_filter('get_header','bp_profile_homepage',1);
add_action('wp_logout','logout_redirection');

Skip to toolbar