php - Get buddypress group slug by passing its ID -
i able link specific buddypress group using groups id on template page.
the admin inputs groups id custom field on page, using able generate groups slug create link it
any appreciated
to buddypress group slug group id:
$group_id = 2; $group = groups_get_group( array( 'group_id' => $group_id ) ); $slug = $group->slug;
Comments
Post a Comment