bp_get_email_tax_type_labels()
Return labels used by the email type taxonomy.
Description Description
Return Return
(array)
Source Source
File: bp-core/bp-core-functions.php
function bp_get_email_tax_type_labels() { /** * Filters email type taxonomy labels. * * @since 2.5.0 * * @param array $value Associative array (name => label). */ return apply_filters( 'bp_get_email_tax_type_labels', array( 'add_new_item' => _x( 'New Email Situation', 'email type taxonomy label', 'buddypress' ), 'all_items' => _x( 'All Email Situations', 'email type taxonomy label', 'buddypress' ), 'edit_item' => _x( 'Edit Email Situations', 'email type taxonomy label', 'buddypress' ), 'items_list' => _x( 'Email list', 'email type taxonomy label', 'buddypress' ), 'items_list_navigation' => _x( 'Email list navigation', 'email type taxonomy label', 'buddypress' ), 'menu_name' => _x( 'Situations', 'email type taxonomy label', 'buddypress' ), 'name' => _x( 'Situation', 'email type taxonomy name', 'buddypress' ), 'new_item_name' => _x( 'New email situation name', 'email type taxonomy label', 'buddypress' ), 'not_found' => _x( 'No email situations found.', 'email type taxonomy label', 'buddypress' ), 'no_terms' => _x( 'No email situations', 'email type taxonomy label', 'buddypress' ), 'popular_items' => _x( 'Popular Email Situation', 'email type taxonomy label', 'buddypress' ), 'search_items' => _x( 'Search Emails', 'email type taxonomy label', 'buddypress' ), 'singular_name' => _x( 'Email', 'email type taxonomy singular name', 'buddypress' ), 'update_item' => _x( 'Update Email Situation', 'email type taxonomy label', 'buddypress' ), 'view_item' => _x( 'View Email Situation', 'email type taxonomy label', 'buddypress' ), ) ); }
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |