wp_cache_eof_tags хук-фильтрWPSCache 1.0

Использование

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_cache_get_ob()
wp_cache_eof_tags
wp-super-cache/wp-cache-phase2.php 2269
if ( ! preg_match( apply_filters( 'wp_cache_eof_tags', '/(<\/html>|<\/rss>|<\/feed>|<\/urlset|<\?xml)/i' ), $buffer ) ) {

Где используется хук в WP Super Cache

Использование не найдено.