tribe_events_filterbar_views_v2_is_enabled()
Checks whether V2 of the Filter Bar Views is enabled or not.
In order the function will check the TRIBE_EVENTS_FILTERBAR_V2_VIEWS
constant, the TRIBE_EVENTS_FILTERBAR_V2_VIEWS
environment variable.
Return #
(bool) Whether V2 of the Views are enabled or not.
Source #
File: src/functions/views/provider.php
function tribe_events_filterbar_views_v2_is_enabled() { if ( ! tribe_events_views_v2_is_enabled() ) { return false; } return (bool) defined( 'TRIBE_EVENTS_FILTERBAR_V2_VIEWS' ) && TRIBE_EVENTS_FILTERBAR_V2_VIEWS; }
Changelog #
Version | Description |
---|---|
TBD | Introduced. |