acf_flush_post_type_cache()ACF 6.1

Deletes all caches for the provided ACF post type.

Хуков нет.

Возвращает

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

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

acf_flush_post_type_cache( $post_type );
$post_type(массив) (обязательный)
The ACF post type array.

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

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

Код acf_flush_post_type_cache() ACF 6.4.2

function acf_flush_post_type_cache( array $post_type ) {
	acf_flush_internal_post_type_cache( $post_type, 'acf-post-type' );
}