Skip to content

Instantly share code, notes, and snippets.

@timersys
Created April 16, 2015 12:22
Show Gist options
  • Select an option

  • Save timersys/8e13d5f3c48d73801614 to your computer and use it in GitHub Desktop.

Select an option

Save timersys/8e13d5f3c48d73801614 to your computer and use it in GitHub Desktop.
Remove Wordpress social invitations WSI from buddypress tab
/**
* Remove Wordpress social invitations WSI from buddypress tab
*/
add_action('bp_setup_nav' ,'remove_wsi_hooks');
function remove_wsi_hooks(){
bp_core_remove_nav_item('wp-social-invitations');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment