Created
April 16, 2015 12:22
-
-
Save timersys/8e13d5f3c48d73801614 to your computer and use it in GitHub Desktop.
Remove Wordpress social invitations WSI from buddypress tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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