tribe_wp_locale_weekday( int|string $weekday, string $format )

Return a WP Locale weekday in the specified format


Parameters

$weekday

(int|string) (Required) Day of week

$format

(string) (Required) Weekday format: full, weekday, initial, abbreviation, abbrev, abbr, short


Top ↑

Return

(string)


Top ↑

Source

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

	function tribe_wp_locale_weekday( $weekday, $format ) {
		return Tribe__Date_Utils::wp_locale_weekday( $weekday, $format );
	}