WP_Locale::get_weekday()publicWP 2.1.0

Retrieves the full translated weekday word.

Week starts on translated Sunday and can be fetched by using 0 (zero). So the week starts with 0 (zero) and ends on Saturday with is fetched by using 6 (six).

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

Хуков нет.

Возвращает

Строку. Full translated weekday.

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

global $wp_locale;
$wp_locale->get_weekday( $weekday_number );
$weekday_number(int) (обязательный)
0 for Sunday through 6 Saturday.

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

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

Код WP_Locale::get_weekday() WP 6.5.2

public function get_weekday( $weekday_number ) {
	return $this->weekday[ $weekday_number ];
}