Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Created February 5, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcosnakamine/3366181d4e3e732ce929e250231eba48 to your computer and use it in GitHub Desktop.
Save marcosnakamine/3366181d4e3e732ce929e250231eba48 to your computer and use it in GitHub Desktop.
PHP - Get Instawidget images and links
<?php $instagram = simplexml_load_file( 'https://instawidget.net/feed/user/google' ) ?>
<?php foreach ( $instagram->channel->item as $key => $value ): ?>
<a href="<?php echo $value->link ?>">
<img src="<?php echo $value->enclosure['url'] ?>" alt="">
</a>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment