Tribe__Date_Utils::get_localized_weekdays_short()

Returns an array of localized short week day names.

Contents


Return

(array)


Top ↑

Source

File: src/Tribe/Date_Utils.php

		public static function get_localized_weekdays_short() {
			if ( empty( self::$localized_weekdays ) ) {
				self::build_localized_weekdays();
			}

			return self::$localized_weekdays['short'];
		}