Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BronsonQuick/5667091 to your computer and use it in GitHub Desktop.
Save BronsonQuick/5667091 to your computer and use it in GitHub Desktop.
Change BuddyPress Group Slugs from Groups to "Teams"
<?php
/* Added to functions.php in the theme */
function ts_change_groups_slug(){
global $bp;
$bp->groups->root_slug = 'teams';
return $bp->groups->root_slug;
}
add_filter( 'bp_get_groups_slug', 'ts_change_groups_slug' );
add_filter( 'bp_get_groups_root_slug', 'ts_change_groups_slug' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment