Skip to content

Instantly share code, notes, and snippets.

@aiiddqd
Created July 17, 2016 09:12
Show Gist options
  • Select an option

  • Save aiiddqd/1be4397b2fb6d283590c451e79d228ed to your computer and use it in GitHub Desktop.

Select an option

Save aiiddqd/1be4397b2fb6d283590c451e79d228ed to your computer and use it in GitHub Desktop.
WP Example: Get data JSON
<?php
$key_oer = '???'; // тут указываем ключ API
$url_api_oer = 'https://openexchangerates.org/api/latest.json?app_id=' . $key_oer;
$response = wp_remote_get($url_api_oer);
$data_exchange = json_decode( wp_remote_retrieve_body( $response ) );
var_dump($data_exchange); // вернет объект с данными, которые можно далее использовать в коде
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment