Tribe__Events__Admin__Notice__Marketing::should_display_virtual_events()

Check if we should display the Virtual Events Notice.


Return

(bool) Whether to display the notice.


Top ↑

Source

File: src/Tribe/Admin/Notice/Marketing.php

	public function should_display_virtual_events() {
		$today = date_create()->format( 'Y-m-d' );
		$start = '2020-06-21';
		$end   = '2020-07-08';

		return $today >= $start && $today <= $end;
	}

Top ↑

Changelog

Changelog
Version Description
TBD Introduced.