Summery Summery
Retrieve the full translated weekday word.
Syntax Syntax
Description Description
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).
Parameters Parameters
- $weekday_number
-
(Required) 0 for Sunday through 6 Saturday.
Return Return
(string) Full translated weekday.
Source Source
File: wp-includes/class-wp-locale.php
public function get_weekday( $weekday_number ) { return $this->weekday[ $weekday_number ]; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |