-
-
Save aiiddqd/1be4397b2fb6d283590c451e79d228ed to your computer and use it in GitHub Desktop.
WP Example: Get data JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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