tribe_get_venue_label_singular_lowercase()
Get Venue Label Singular lowercase.
Returns the lowercase singular version of the Venue 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 Venue Label.
Source
File: src/functions/template-tags/venue.php
function tribe_get_venue_label_singular_lowercase() {
/**
* Allows customization of the singular lowercase version of the Venue Label.
* Note: the output of this filter is not escaped!
*
* @since 6.2.1
*
* @param string $label The singular lowercase version of the Venue label, defaults to "venue" (lowercase)
*/
return apply_filters(
'tribe_venue_label_singular_lowercase',
__( 'venue', 'the-events-calendar' )
);
}
Changelog
| Version | Description |
|---|---|
| 6.2.1 | Introduced. |