acf_field_date_picker::initialize
This function will setup the field type data
Метод класса: acf_field_date_picker{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$acf_field_date_picker = new acf_field_date_picker(); $acf_field_date_picker->initialize();
Список изменений
С версии 5.0.0 | Введена. |
Код acf_field_date_picker::initialize() acf field date picker::initialize ACF 6.4.2
function initialize() { // vars $this->name = 'date_picker'; $this->label = __( 'Date Picker', 'acf' ); $this->category = 'advanced'; $this->description = __( 'An interactive UI for picking a date. The date return format can be customized using the field settings.', 'acf' ); $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-date-picker.png'; $this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/date-picker/', 'docs', 'field-type-selection' ); $this->defaults = array( 'display_format' => 'd/m/Y', 'return_format' => 'd/m/Y', 'first_day' => 1, ); }