bp_get_group_type_tax_args()
Returns arguments used by the Group type taxonomy.
Return Return
(array)
Source Source
File: bp-groups/bp-groups-functions.php
function bp_get_group_type_tax_args() { /** * Filters Group type taxonomy args. * * @since 7.0.0 * * @param array $value Associative array (key => arg). */ return apply_filters( 'bp_get_group_type_tax_args', array_merge( array( 'description' => _x( 'BuddyPress Group Types', 'Group type taxonomy description', 'buddypress' ), 'labels' => array_merge( bp_get_group_type_tax_labels(), bp_get_taxonomy_common_labels() ), ), bp_get_taxonomy_common_args() ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
7.0.0 | Introduced. |