Skip to content

Instantly share code, notes, and snippets.

@sagarjadhav
Last active December 1, 2015 12:03
Show Gist options
  • Save sagarjadhav/844d0095c7386628d05b to your computer and use it in GitHub Desktop.
Save sagarjadhav/844d0095c7386628d05b to your computer and use it in GitHub Desktop.
Remove subnav item BuddyPress
<?php
function bp_remove_nav_item() {
global $bp;
bp_core_remove_subnav_item( $bp->profile->slug, 'change-avatar' );
}
add_action( 'wp', 'bp_remove_nav_item' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment