Last active
January 3, 2016 01:59
-
-
Save ericrallen/8393004 to your computer and use it in GitHub Desktop.
Revisions
-
ericrallen revised this gist
Jan 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ <?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) { -
Eric Allen created this gist
Jan 13, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ <?php if(function_exists('DIF_get_user_images')) { $test = DIF_get_user_images(3); if($test) { foreach($test as $image) { echo '<pre>'; print_r($image); echo '</pre>'; } } } ?>