↧
Answer by RafaSashi for Limit Instagram php feed
Limit your loop$items=6;$i=0;foreach ($result->data as $post) { if($i<$items){ // Do something with this data. } else{ break; }++$i;}
View ArticleAnswer by Bill Rollins for Limit Instagram php feed
You can specify the number of images to return using the COUNT parameter. Try this:$result =...
View ArticleLimit Instagram php feed
I'm looking for some helping with using a php instagram feed. I found this link through my research and it works perfectly but I don't know how to limit the results from instagram's default of 20.I'd...
View Article