Tribe__Events__Main::monthNames( bool $short = false )

Helper method to return an array of translated month names or short month names


Parameters

$short

(bool) (Optional)

Default value: false


Top ↑

Return

(array) Translated month names


Top ↑

Source

File: src/Tribe/Main.php

		public function monthNames( $short = false ) {
			if ( $short ) {
				return Tribe__Date_Utils::get_localized_months_short();
			}

			return Tribe__Date_Utils::get_localized_months_full();
		}