bp_get_group_type_tax_labels()
Returns labels used by the Group type taxonomy.
Return Return
(array)
Source Source
File: bp-groups/bp-groups-functions.php
function bp_get_group_type_tax_labels() { /** * Filters Group type taxonomy labels. * * @since 7.0.0 * * @param array $value Associative array (name => label). */ return apply_filters( 'bp_get_group_type_tax_labels', array( // General labels 'name' => _x( 'Group Types', 'Group type taxonomy name', 'buddypress' ), 'singular_name' => _x( 'Group Type', 'Group type taxonomy singular name', 'buddypress' ), 'search_items' => _x( 'Search Group Types', 'Group type taxonomy search items label', 'buddypress' ), 'popular_items' => _x( 'Popular Group Types', 'Group type taxonomy popular items label', 'buddypress' ), 'all_items' => _x( 'All Group Types', 'Group type taxonomy all items label', 'buddypress' ), 'parent_item' => _x( 'Parent Group Type', 'Group type taxonomy parent item label', 'buddypress' ), 'parent_item_colon' => _x( 'Parent Group Type:', 'Group type taxonomy parent item label', 'buddypress' ), 'edit_item' => _x( 'Edit Group Type', 'Group type taxonomy edit item label', 'buddypress' ), 'view_item' => _x( 'View Group Type', 'Group type taxonomy view item label', 'buddypress' ), 'update_item' => _x( 'Update Group Type', 'Group type taxonomy update item label', 'buddypress' ), 'add_new_item' => _x( 'Add New Group Type', 'Group type taxonomy add new item label', 'buddypress' ), 'new_item_name' => _x( 'New Group Type Name', 'Group type taxonomy new item name label', 'buddypress' ), 'separate_items_with_commas' => _x( 'Separate group types with commas', 'Group type taxonomy separate items with commas label', 'buddypress' ), 'add_or_remove_items' => _x( 'Add or remove group types', 'Group type taxonomy add or remove items label', 'buddypress' ), 'choose_from_most_used' => _x( 'Choose from the most used group types', 'Group type taxonomy choose from most used label', 'buddypress' ), 'not_found' => _x( 'No group types found.', 'Group type taxonomy not found label', 'buddypress' ), 'no_terms' => _x( 'No group types', 'Group type taxonomy no terms label', 'buddypress' ), 'items_list_navigation' => _x( 'Group Types list navigation', 'Group type taxonomy items list navigation label', 'buddypress' ), 'items_list' => _x( 'Group Types list', 'Group type taxonomy items list label', 'buddypress' ), /* translators: Tab heading when selecting from the most used terms. */ 'most_used' => _x( 'Most Used', 'Group type taxonomy most used items label', 'buddypress' ), 'back_to_items' => _x( '← Back to Group Types', 'Group type taxonomy back to items label', 'buddypress' ), // Specific to BuddyPress. 'bp_type_id_label' => _x( 'Group Type ID', 'BP Member type ID label', 'buddypress' ), 'bp_type_id_description' => _x( 'Lower-case string, no spaces or special characters. Used to identify the group type.', 'BP Group type ID description', 'buddypress' ), 'bp_type_show_in_create_screen' => _x( 'Show on Group Creation', 'BP Group type show in create screen', 'buddypress' ), 'bp_type_show_in_list' => _x( 'Show on Group', 'BP Group type show in list', 'buddypress' ), ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
7.0.0 | Introduced. |