Features:
- Default hashtag feed
- Linked hashtags for each picture, to easily jump to a new feed
- Hashtag feed search function
This PHP application is easy to implement into your own site. Simply download the source code and set the default hashtag on line 14 of the index.php file.
<?php
/************************************************************************************
* Instagram Atom Feed Reader
*
* A PHP-Based Atom Feed Reader that converts the Atom feed of a hashtag into HTML.
* Uses SimplePie: Super-fast, easy-to-use, RSS and Atom feed parsing in PHP.
*
************************************************************************************/
/*************
* Settings
**************/
/* Set the default feed */
$default="lomogre";
/* Set the date format - http://php.net/manual/en/function.date.php */
$dateformat="j M Y";
Upload all the files to your desired directory and your done.
For full details of the application, please view the advanced details post.
