Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /**
  2. * Login to Group page when user first the Homepage
  3. */
  4. function redirect_to_specific_page() {
  5. if ( is_front_page() ) {
  6. $url = bp_get_groups_directory_permalink() . 'pastor-rodney-browne';
  7. wp_redirect( $url );
  8. exit();
  9. }
  10. }
  11. add_filter( 'wp', 'redirect_to_specific_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement