WP_Locale::get_month()publicWP 2.1.0

Retrieves the full translated month by month number.

The $month_number parameter has to be a string because it must have the '0' in front of any number that is less than 10. Starts from '01' and ends at '12'.

You can use an integer instead and it will add the '0' before the numbers less than 10 for you.

Метод класса: WP_Locale{}

Хуков нет.

Возвращает

Строку. Translated full month name.

Использование

global $wp_locale;
$wp_locale->get_month( $month_number );
$month_number(строка|int) (обязательный)
'01' through '12'.

Список изменений

С версии 2.1.0 Введена.

Код WP_Locale::get_month() WP 6.5.2

public function get_month( $month_number ) {
	return $this->month[ zeroise( $month_number, 2 ) ];
}