wp_cache_eof_tags
Использование
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
- -
Где вызывается хук
wp-super-cache/wp-cache-phase2.php 2291
if ( ! preg_match( apply_filters( 'wp_cache_eof_tags', '/(<\/html>|<\/rss>|<\/feed>|<\/urlset|<\?xml)/i' ), $buffer ) ) {