tribe_get_day_link( string $date = null )

Link Event Day.


Parameters

$date

(string) (Optional) Which date was passed to build the URL.

Default value: null


Top ↑

Return

(string) URL.


Top ↑

Source

File: src/functions/template-tags/day.php

	function tribe_get_day_link( $date = null ) {
		$tribe_ecp = Tribe__Events__Main::instance();

		return apply_filters( 'tribe_get_day_link', $tribe_ecp->getLink( 'day', $date ), $date );
	}