mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
262 B
Text
10 lines
262 B
Text
function bp_set_profile_page_as_homepage() {
|
|
if ( is_user_logged_in() && is_front_page() ) {
|
|
global $bp;
|
|
wp_redirect( $bp->loggedin_user->domain );
|
|
exit;
|
|
}
|
|
|
|
}
|
|
|
|
add_action( 'template_redirect', 'bp_set_profile_page_as_homepage' );
|