Created
February 5, 2018 13:46
-
-
Save marcosnakamine/3366181d4e3e732ce929e250231eba48 to your computer and use it in GitHub Desktop.
PHP - Get Instawidget images and links
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 $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