Last active
January 3, 2016 01:59
-
-
Save ericrallen/8393004 to your computer and use it in GitHub Desktop.
Using Developer Instagram Feed
This file contains 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 if(function_exists('DIF_get_user_images')) { | |
$test = DIF_get_user_images($user_id); //replace $user_id with the ID of the user you'd like to get the feed for | |
if($test) { | |
foreach($test as $image) { | |
echo '<pre>'; | |
print_r($image); | |
echo '</pre>'; | |
} | |
} | |
} ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment