tribe_get_guest_label_singular_lowercase( string $context = '' )

Get the lowercase singular version of the Guest label. May also be used as a verb.


Parameters

$context

(string) (Optional) Allows passing additional context to this function's filter, e.g. 'verb' or 'template.php'.

Default value: ''


Top ↑

Return

(string)


Top ↑

Source

File: src/template-tags/tickets.php

	function tribe_get_guest_label_singular_lowercase( $context = '' ) {
		/**
		 * Allows customization of the lowercase singular version of the Guest label.
		 *
		 * @since TBD
		 *
		 * @param string $label   The lowercase singular version of the Guest label. Defaults to "guest".
		 * @param string $context The context in which this string is filtered, e.g. 'verb' or 'template.php'.
		 */
		return apply_filters( 'tribe_get_guest_label_singular_lowercase', _x( 'guest', 'lowercase singular label for Guest', 'event-tickets' ), $context );
	}

Top ↑

Changelog

Changelog
Version Description
4.12.3 Introduced.