tribe_get_event_label_plural()

Get Event Label Plural.

Returns the plural version of the Event Label.

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


Return

(string) The plural version of the Event Label.


Top ↑

Source

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

	function tribe_get_event_label_plural() {
		/**
		 * Allows customization of the plural version of the Event Label
		 *
		 * @param string $label The plural version of the Event label, defaults to "Events" (uppercase)
		 */
		return apply_filters( 'tribe_event_label_plural', esc_html__( 'Events', 'the-events-calendar' ) );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.6 remove escaping.
3.10 Introduced.