tribe_get_organizer_label_singular_lowercase()

Get Organizer Label Singular lowercase.

Returns the lowercase singular version of the Organizer Label.

Note: the output of this function is not escaped. You should escape it wherever you use it!


Return

(string) The lowercase singular version of the Organizer Label.


Top ↑

Source

File: src/functions/template-tags/organizer.php

function tribe_get_organizer_label_singular_lowercase() {
	/**
	 * Allows customization of the singular lowercase version of the Organizer Label.
	 * Note: the output of this filter is not escaped!
	 *
	 * @since 6.2.1
	 *
	 * @param string $label The singular lowercase version of the Organizer label, defaults to "organizer" (lowercase)
	 */
	return apply_filters(
		'tribe_organizer_label_singular_lowercase',
		__( 'organizer', 'the-events-calendar' )
	);
}

Top ↑

Changelog

Changelog
Version Description
6.2.1 Introduced.