Skip to content

Instantly share code, notes, and snippets.

@ericrallen
Last active January 3, 2016 01:59
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 ericrallen/8393004 to your computer and use it in GitHub Desktop.
Save ericrallen/8393004 to your computer and use it in GitHub Desktop.
Using Developer Instagram Feed
<?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