Tribe__Tickets_Plus__Meta__Field__Birth::get_years()
Return an array of years, starting from the current year and going down until 1900.
Return
(array)
Source
File: src/Tribe/Meta/Field/Birth.php
public function get_years() {
return range( (int) date_i18n( 'Y' ), 1900 );
}
Changelog
| Version | Description |
|---|---|
| 4.12.1 | Introduced. |