Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url = "https://www.behance.net/pugbomb/projects";
- $response = wp_remote_get($url, [
- 'sslverify' => false,
- 'timeout' => 60,
- 'headers' => [
- 'X-Requested-With' => 'XMLHttpRequest',
- ],
- ]);
- $xml = wp_remote_retrieve_body($response);
- $result = json_decode($xml, true);
- $behance_shots = $result['profile']['activeSection']['work']['projects'];
- print_r($behance_shots);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement