bp_get_email_tax_type_labels()

Return labels used by the email type taxonomy.

Description

Return

(array)

Source

File: bp-core/bp-core-functions.php

function bp_get_email_tax_type_labels() {

	/**
	 * Filters email type taxonomy labels.
	 *
	 * @since BuddyPress 2.5.0
	 *
	 * @param array $value Associative array (name => label).
	 */
	return apply_filters( 'bp_get_email_tax_type_labels', array(
		'add_new_item'          => __( 'New Email Situation', 'buddyboss' ),
		'all_items'             => __( 'All Email Situations', 'buddyboss' ),
		'edit_item'             => __( 'Edit Email Situations', 'buddyboss' ),
		'items_list'            => __( 'Email list', 'buddyboss' ),
		'items_list_navigation' => __( 'Email list navigation', 'buddyboss' ),
		'menu_name'             => __( 'Situations', 'buddyboss' ),
		'name'                  => __( 'Situation', 'buddyboss' ),
		'new_item_name'         => __( 'New email situation name', 'buddyboss' ),
		'not_found'             => __( 'No email situations found', 'buddyboss' ),
		'no_terms'              => __( 'No email situations', 'buddyboss' ),
		'popular_items'         => __( 'Popular Email Situation', 'buddyboss' ),
		'search_items'          => __( 'Search Emails', 'buddyboss' ),
		'singular_name'         => __( 'Email', 'buddyboss' ),
		'update_item'           => __( 'Update Email Situation', 'buddyboss' ),
		'view_item'             => __( 'View Email Situation', 'buddyboss' ),
	) );
}

Changelog

Changelog
Version Description
BuddyPress 2.5.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.