Skip to content

Instantly share code, notes, and snippets.

@raftaar1191
Created August 8, 2019 12:27
Show Gist options
  • Save raftaar1191/e9555f8f48b6727e25de47c4434281d8 to your computer and use it in GitHub Desktop.
Save raftaar1191/e9555f8f48b6727e25de47c4434281d8 to your computer and use it in GitHub Desktop.
Redirect to any page
/**
* Login to Group page when user first the Homepage
*/
function redirect_to_specific_page() {
if ( is_front_page() ) {
$url = bp_get_groups_directory_permalink() . 'pastor-rodney-browne';
wp_redirect( $url );
exit();
}
}
add_filter( 'wp', 'redirect_to_specific_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment