bp_get_group_type_tax_name()
Return the slug of the Group type taxonomy.
Return Return
(string) The unique Group taxonomy slug.
Source Source
File: bp-groups/bp-groups-functions.php
function bp_get_group_type_tax_name() { /** * Filters the slug of the Group type taxonomy. * * @since 7.0.0 * * @param string $value Group type taxonomy slug. */ return apply_filters( 'bp_get_group_type_tax_name', 'bp_group_type' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
7.0.0 | Introduced. |