acf_field_button_group::update_field
This filter is appied to the $field before it is saved to the database
Метод класса: acf_field_button_group{}
Хуков нет.
Возвращает
$field.
Использование
$acf_field_button_group = new acf_field_button_group(); $acf_field_button_group->update_field( $field );
- $field(массив) (обязательный)
- The field array holding all the field options.
Список изменений
| С версии 5.6.3 | Введена. |
Код acf_field_button_group::update_field() acf field button group::update field ACF 6.4.2
function update_field( $field ) {
return acf_get_field_type( 'radio' )->update_field( $field );
}