Skip to content

Instantly share code, notes, and snippets.

@sagarjadhav
Created December 1, 2015 12:05
Show Gist options
  • Save sagarjadhav/832a3e9ac839e6f1971b to your computer and use it in GitHub Desktop.
Save sagarjadhav/832a3e9ac839e6f1971b to your computer and use it in GitHub Desktop.
Remove "Nav" items from profile navigation
<?php
/**
* Remove "Nav" items from profile navigation
*/
function bp_remove_settings_nav() {
global $bp;
unset( $bp->bp_nav[ 'settings' ] );
unset( $bp->bp_nav[ 'messages' ] );
unset( $bp->bp_nav[ 'notifications' ] );
}
add_action( 'bp_setup_nav', 'bp_remove_settings_nav', 15 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment