Filters the list of cache headers supported by core.
Description
This list indicates how each of the specified headers will be checked to indicate if a page cache is enabled or not. WordPress checks for each of the headers in the returned array. If the callback is provided, it will be passed the value for the corresponding header and return a boolean value indicating if the header suggests that a cache is active. If the value is null for the header, then WordPress will assume that a cache is active if the header is present, regardless of its value.
Parameters
\array<string,
?callable> $cache_headers Mapping from cache-related HTTP headers to whether they indicate if a page cache is enabled for the site. null indicates caching in the presence of the header; a callback is provided the header’s value and should return true if it implies that a cache is active.
3590* @param array<string,?callable>$cache_headers Mapping from cache-related HTTP headers to whether they3591* indicate if a page cache is enabled for the site.`null`3592* indicates caching in the presence of the header; a callback is3593* provided the header’s value and should return`true`if it3594* implies that a cache is active.3595*/3596return(array)apply_filters('site_status_page_cache_supported_cache_headers',$cache_headers);3597}35983599/**3600* Checks if site has page cache enabled or not.3601*3602* @since 6.1.0
History
Introduced in 6.1.0. 2 changes between 6.7.7 and 7.1.0.