Created
January 21, 2014 00:08
-
-
Save messaoudi-mounir/8531929 to your computer and use it in GitHub Desktop.
Buddypress - Change Groups slug
This file contains 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
// add this code to functions.php | |
// then edit groups page from wpadmin pages ( change permalink slug to "your_new_slug_for_groups" ) and save! | |
add_filter('bp_get_groups_root_slug', 'bp_change_groups_root_slug'); | |
function bp_change_groups_root_slug( $group ){ | |
return "your_new_slug_for_groups"; //For example "gatherings" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment