Advertisement
Guest User

Untitled

a guest
Sep 20th, 2011
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. function my_bp_groups_forum_first_tab() {
  3. global $bp;
  4.  
  5. $bp->bp_options_nav['groups']['home']['position'] = '50';
  6. }
  7. add_action('wp', 'my_bp_groups_forum_first_tab');
  8. function redirect_to_forum() {
  9. global $bp;
  10.  
  11. $path = clean_url( $_SERVER['REQUEST_URI'] );
  12.  
  13. $path = apply_filters( 'bp_uri', $path );
  14.  
  15. if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav['groups']['home']['slug'] ) === false )
  16. bp_core_redirect( $path . $bp->bp_options_nav['groups']['forum']['slug'] . '/' );
  17. }
  18. add_action( 'wp', 'redirect_to_forum' );
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement