$url = "https://yandex.ru/search/xml?user=".$user."&key=".$key."&query=".urlencode($query)."&lr=225";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); // Установка версии IP
$response = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($response);
var_dump($xml);
add_shortcode( 'wp_city', 'city' )
и наоборот, сейчас всё работает, СПАСИБО! $city = get_query_var( 'city', __( 'Moscow', 'default' ) );