Advertisement
Guest User

Untitled

a guest
Aug 15th, 2014
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?
  2. function extract_json($json_url)
  3. {
  4. $feed = file_get_contents($json_url);
  5. return json_decode($feed, true);
  6. }
  7.  
  8.  
  9. $json = extract_json("http://www.mondoblackberry.com/?json=get_posts&count=5");
  10.  
  11. echo '<pre>';
  12. foreach($wp_array['posts'] as $post) {
  13.                         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>";
  14.                 }
  15. echo '</pre>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement