Skip to content

Instantly share code, notes, and snippets.

@stevenkword
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenkword/e1eebd2a48d427a1db32 to your computer and use it in GitHub Desktop.
Save stevenkword/e1eebd2a48d427a1db32 to your computer and use it in GitHub Desktop.
<?php
// Remove Settings->Notifications SubMenu
function skw_remove_notifications_subnav(){
global $bp;
if ( $bp->current_component == $bp->settings->slug ) {
bp_core_remove_subnav_item( $bp->settings->slug, 'notifications' );
}
}
add_action( 'wp', 'skw_remove_notifications_subnav', 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment