tribe_get_virtual_event_label_plural_lowercase()

Get virtual event label plural lowercase.

Returns the lowercase 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)


Top ↑

Source

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

function tribe_get_virtual_event_label_plural_lowercase() {
	$label = sprintf(
		_x(
			'%1$s %2$s',
			'Lowercase "virtual" term, lowercase plural event term.',
			'events-virtual'
		),
		tribe_get_virtual_label_lowercase(),
		tribe_get_event_label_plural_lowercase()
	);

	/**
	 * Allows customization of the plural lowercase version of the Virtual Event Label.
	 *
	 * Note: the output of this filter is not escaped!
	 *
	 * @param string $label The plural lowercase version of the Virtual Event label,
	 *                      defaults to "virtual events" (lowercase)
	 *                      (or the filtered term for "virtual" + the filtered term for "events").
	 *
	 * @see tribe_get_event_label_plural_lowercase
	 */
	return apply_filters( 'tribe_virtual_event_label_plural_lowercase', $label );
}

Top ↑

Changelog

Changelog
Version Description
1.0.4 Implemented use of tribe_get_virtual_label_lowercase() in pre-filter translation.
1.0.0 Introduced.