Advertisement
vapvarun

Remove BuddyPress Profile Nav

Apr 26th, 2018
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. // remove nav forums and coures
  2. function bb_remove_extra_tab() {
  3.      global $bp;      
  4. bp_core_remove_nav_item( 'forums' );      
  5. bp_core_remove_nav_item( 'courses' );
  6. }
  7. add_action( 'bp_setup_nav', 'bb_remove_extra_tab', 999 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement