acf_flush_field_group_cache()ACF 5.7.10

acf_flush_field_group_cache

Deletes all caches for this field group.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

acf_flush_field_group_cache( $field_group );
$field_group(массив) (обязательный)
The field group array.

Список изменений

С версии 5.7.10 Введена.

Код acf_flush_field_group_cache() ACF 6.4.2

function acf_flush_field_group_cache( $field_group ) {
	acf_flush_internal_post_type_cache( $field_group, 'acf-field-group' );
}