bp_get_the_profile_group_slug()
Return the XProfile group slug.
Description Description
Return Return
(string)
Source Source
File: bp-xprofile/bp-xprofile-template.php
function bp_get_the_profile_group_slug() {
global $group;
/**
* Filters the XProfile group slug.
*
* @since 1.1.0
*
* @param string $value Slug for the profile group.
*/
return apply_filters( 'bp_get_the_profile_group_slug', sanitize_title( $group->name ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.1.0 | Introduced. |