Skip to content

Instantly share code, notes, and snippets.

@messaoudi-mounir
Created January 21, 2014 00:08
Show Gist options
  • Save messaoudi-mounir/8531929 to your computer and use it in GitHub Desktop.
Save messaoudi-mounir/8531929 to your computer and use it in GitHub Desktop.
Buddypress - Change Groups slug
// 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