acf_cache_key() ACF 5.7.11
Returns a filtered cache key.
Хуки из функции
Возвращает
Строку.
Использование
acf_cache_key( $key );
- $key(строка)
- The cache key.
По умолчанию: ''
Список изменений
С версии 5.7.11 | Введена. |
Код acf_cache_key() acf cache key ACF 5.9.1
function acf_cache_key( $key = '' ) {
/**
* Filters the cache key.
*
* @date 25/1/19
* @since 5.7.11
*
* @param string $key The cache key.
* @param string $original_key The original cache key.
*/
return apply_filters( "acf/get_cache_key", $key, $key );
}