tec_tickets_tec_events_is_active()

Return if The Events Calendar is active.

By checking if tribe_events function exists we avoid fatal errors when there are version dependencies mismatches.


Return

(bool) True if The Events Calendar is active.


Top ↑

Source

File: src/template-tags/tickets.php

function tec_tickets_tec_events_is_active() : bool {
	return function_exists( 'tribe_events' );
}

Top ↑

Changelog

Changelog
Version Description
5.5.2 Introduced.