wp_cache_eof_tags
Usage
add_filter( 'wp_cache_eof_tags', 'wp_kama_cache_eof_tags_filter' );
/**
* Function for `wp_cache_eof_tags` filter-hook.
*
* @param $string
*
* @return
*/
function wp_kama_cache_eof_tags_filter( $string ){
// filter...
return $string;
}
- $string
- -
Where the hook is called
wp-super-cache/wp-cache-phase2.php 2289
if ( ! preg_match( apply_filters( 'wp_cache_eof_tags', '/(<\/html>|<\/rss>|<\/feed>|<\/urlset|<\?xml)/i' ), $buffer ) ) {