acf_field_output::initialize
This function will setup the field type data
Метод класса: acf_field_output{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$acf_field_output = new acf_field_output(); $acf_field_output->initialize();
Список изменений
| С версии 5.0.0 | Введена. |
Код acf_field_output::initialize() acf field output::initialize ACF 6.4.2
public function initialize() {
// vars
$this->name = 'output';
$this->label = 'output';
$this->public = false;
$this->defaults = array(
'html' => false,
);
}