Caching
Cache lifetime & invalidation
add_filter( 'air_acf_block_cache_lifetime', function( $lifetime, $block_slug, $post_id ) {
return MINUTE_IN_SECONDS * 30;
}, 10, 3 );add_filter( 'air_acf_block_cache_key', function( $cache_key, $block_slug, $post_id ) {
$cache_key .= '|' . get_post_timestamp( $post_id, 'modified' );
return $cache_key;
}, 10, 3 );Disable caching
add_filter( 'air_acf_block_maybe_enable_cache', function( $cache, $block_slug ) {
return false;
}, 10, 2 );Last updated

