bbp_get_topic_tag_tax_labels()
Return array of labels used by the topic-tag taxonomy
Description Description
Return Return
(array)
Source Source
File: includes/topics/template.php
function bbp_get_topic_tag_tax_labels() {
// Filter & return
return (array) apply_filters( 'bbp_get_topic_tag_tax_labels', array(
'name' => esc_attr__( 'Topic Tags', 'bbpress' ),
'menu_name' => esc_attr__( 'Topic Tags', 'bbpress' ),
'singular_name' => esc_attr__( 'Topic Tag', 'bbpress' ),
'search_items' => esc_attr__( 'Search Tags', 'bbpress' ),
'popular_items' => esc_attr__( 'Popular Tags', 'bbpress' ),
'all_items' => esc_attr__( 'All Tags', 'bbpress' ),
'parent_item' => esc_attr__( 'Parent Tag', 'bbpress' ),
'parent_item_colon' => esc_attr__( 'Parent Tag:', 'bbpress' ),
'edit_item' => esc_attr__( 'Edit Tag', 'bbpress' ),
'view_item' => esc_attr__( 'View Topic Tag', 'bbpress' ),
'update_item' => esc_attr__( 'Update Tag', 'bbpress' ),
'add_new_item' => esc_attr__( 'Add New Tag', 'bbpress' ),
'new_item_name' => esc_attr__( 'New Tag Name', 'bbpress' ),
'separate_items_with_commas' => esc_attr__( 'Separate topic tags with commas', 'bbpress' ),
'add_or_remove_items' => esc_attr__( 'Add or remove tags', 'bbpress' ),
'choose_from_most_used' => esc_attr__( 'Choose from the most used tags', 'bbpress' ),
'not_found' => esc_attr__( 'No topic tags found.', 'bbpress' ),
'no_terms' => esc_attr__( 'No topic tags', 'bbpress' ),
'items_list_navigation' => esc_attr__( 'Topic tags list navigation', 'bbpress' ),
'items_list' => esc_attr__( 'Topic tags list', 'bbpress' ),
'most_used' => esc_attr__( 'Most used topic tags', 'bbpress' ),
'back_to_items' => esc_attr__( '← Back to Tags', 'bbpress' )
) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |