Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function extract_json($json_url)
- {
- $feed = file_get_contents($json_url);
- return json_decode($feed, true);
- }
- $json = extract_json("http://www.mondoblackberry.com/?json=get_posts&count=5");
- echo '<pre>';
- foreach($wp_array['posts'] as $post) {
- echo "<a href='" . $post['url'] . "' target=_blank><img src='" . $post["attachments"][0]["url"] . "' alt= '" . $post["attachments"][0]["title"] . "' width='70' height='49'><b>" . $post['title'] . "</b></a>";
- }
- echo '</pre>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement