{"id":13856641,"url":"https://github.com/dcramer/wp-lifestream","last_synced_at":"2025-03-16T22:30:42.385Z","repository":{"id":742640,"uuid":"393746","full_name":"dcramer/wp-lifestream","owner":"dcramer","description":"Lifestreaming plugin for Wordpress","archived":false,"fork":false,"pushed_at":"2013-01-06T16:43:39.000Z","size":2538,"stargazers_count":122,"open_issues_count":61,"forks_count":31,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-15T15:17:41.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://forums.lifestrm.com/index.php","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dcramer.png","metadata":{"files":{"readme":"readme.txt","changelog":"CHANGES","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-12-03T04:57:52.000Z","updated_at":"2024-08-08T22:44:40.000Z","dependencies_parsed_at":"2022-07-05T13:14:26.485Z","dependency_job_id":null,"html_url":"https://github.com/dcramer/wp-lifestream","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcramer%2Fwp-lifestream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcramer%2Fwp-lifestream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcramer%2Fwp-lifestream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcramer%2Fwp-lifestream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcramer","download_url":"https://codeload.github.com/dcramer/wp-lifestream/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243830952,"owners_count":20354854,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-05T03:01:07.103Z","updated_at":"2025-03-16T22:30:42.036Z","avatar_url":"https://github.com/dcramer.png","language":"PHP","funding_links":[],"categories":["PHP"],"sub_categories":[],"readme":"=== Lifestream ===\nContributors: zeeg, llygoden\nTags: lifestream, rss, social, miniblogging, twitter, flickr, friendfeed, delicious, last.fm, facebook, digg, atom, instapaper, Google Plus, youtube\nRequires at least: 2.8\nTested up to: 3.1.3\nStable tag: trunk\n\nStreams your activity from over 50 different sources to your blog.\n\n== Description ==\n\nLifestream displays your social feeds and photos much like you would see it on many of the social networking sites. \nThis version is taken from the Github Source after changes have been made \n\nHomepage: http://www.enthropia.com/labs/wp-lifestream/\n\nSource: https://github.com/dcramer/wp-lifestream\n\nSupport: https://github.com/dcramer/wp-lifestream/issues\n\nFollow us on Twitter: http://www.twitter.com/wplifestream\n\nRequirements:\n\n* PHP 5.x\n* WordPress 2.8+\n* MySQL 5.x\n\n\n== Installation ==\n\nUpload the plugin (unzipped) into `/wp-content/plugins/`. You should end up with `/wp-content/plugins/lifestream/lifestream.php`.\n\nActivate the plugin under the \"Plugins\" menu.\n\nVisit \"Lifestream\" -\u003e \"Settings\" to configure the basic options, and add feeds.\n\nThere are severals methods in which you can use Lifestream in a WordPress page.\n\nThe easiest way is to use the normal context handler (works in pages and posts):\n\n`[lifestream]`\n\nAnother method requires a [custom WordPress page](http://codex.wordpress.org/Pages#Page_Templates), or the use of a template, and is a simple function call:\n\n`\u003c?php lifestream(); ?\u003e`\n\nYou may also specify several parameters in the `lifestream` method (useful for sidebar display). These should be in the standard key=\u003evalue format for PHP calls.\n\n* `(int) offset`: defaults to 0\n* `(int) limit`: defaults to '50'\n* `(string) date_interval`: defaults to '1 month'\n* `(boolean) break_events`: defaults to false - forces grouped events to be single\n* `(array) user_ids`: defaults to all users -- specify the ids of users to show\n* `(array) feed_types`: defaults to all feeds -- specify the feed keys (e.g. twitter) to show\n* `(array) feed_ids`: defaults to all feeds -- specify the ids of feeds to show, also overrides `feed_types` setting\n\nFor example:\n\n`[lifestream limit=\"10\"]`\n\nFor more advanced uses, you may directly use `get_events()` which will return an array of `Event` instances. This is the same syntax as the `lifestream()` method.\n\nExample:\n\n`\u003cul\u003e\n\u003c?php\n$options = array('limit' =\u003e 50);\n$events = $lifestream-\u003eget_events($options);\n\nforeach ($events as $event)\n{\n\techo '\u003cli\u003e'.$event-\u003erender($options).'\u003c/li\u003e';\n}\n?\u003e\n\u003c/ul\u003e`\n\nAnother popular example, would to be show your current Twitter, or Facebook status somewhere in your templates:\n\n`$events = $lifestream-\u003eget_events(array('feed_types'=\u003earray('twitter'), 'number_of_results'=\u003e1, 'break_groups'=\u003etrue);\n$event = $events[0];\n\n// to render it with links\necho $event-\u003efeed-\u003erender_item($event, $event-\u003edata);\n\n// or render just the text\necho $event-\u003edata['title'];`\n\nOr, use our handy shortcuts:\n\n`\u003c?php lifestream_twitter_status(); ?\u003e`\n\nAnd\n\n`\u003c?php lifestream_facebook_status(); ?\u003e`\n\n== Requirements ==\n\n* PHP 5\n* WordPress 2.8 or newer\n\n== Features ==\n\n* Personalizable CSS classes.\n* Detailed configuration options.\n* Supports nearly every major social networking website\n* Unlimited number of feeds in your Lifestream.\n* Supports grouping of events.\n* Localization ready!\n* Digest available to summarize your activities.\n* WordPress MU is supported.\n\n== Built-in Feeds ==\n\nThe plugin includes most of the major social networking feeds available. You may add your own, as well as send me ideas for new feeds at the GitHub Forum. If you wish to add custom extensions, please see extensions/README.\n\n* Facebook\n* Digg\n* Blog\n* Twitter\n* Reddit\n* De.licio.us\n* GetGlue\n* Instapaper\n* Jaiku\n* Last.fm (Revamped plugin in 0.38)\n* Flickr (Improved display in 0.39)\n* Photobucket\n* Pownce\n* YouTube\n* Google Reader\n* Google Plus\n* Yelp\n* MySpace Blog\n* Skitch\n* Identi.ca\n* Pandora\n* Hulu\n* TwitPic\n* Vimeo\n* StumbleUpon\n* Tumblr\n* Amazon Wishlist\n* Ma.gnolia\n* Zooomr\n* Blip.fm\n* Brightkite\n* Picasa (Web)\n* Kongregate\n* Viddler\n* coComment\n* FoodFeed\n* MyEpisodes\n* Mixx\n* SlideShare\n* Blip.tv\n* Steam\n* Xbox Live\n* iTunes\n* Github\n* Readernaut\n* ScrnShots\n* Mobypicture\n* SmugMug\n* DeviantArt\n* BackType\n* LibraryThing\n* Netflix\n* Wikipedia\n* Upcoming.org\n* WordPress Codex\n* Raptr\n* Gowalla\n* Kiva\n* Codaset\n* Foursquare\n* Ustream\n* World of Warcraft Armory\n\nWant to add your own? See extensions/README for more information.\n\n== Localization ==\n\nCurrently the plugin is localized in the default language of English, as well as the following languages. If you wish to submit a localization please send it to dcramer@gmail.com.\n\n* Chinese (Simplified)\n* Japanese\n* Polish\n* Danish\n* Italian\n* Bulgarian\n* French\n* German\n* Danish\n* Spanish\n* Swedish\n* Belorussian\n* Catalan\n\n== Changelog ==\n\n= 0.99.9.8-BETA =\n* The last release by David Cramer\n\n= 1.0 =\n* This updated version containing a whole load of fixes and more plugins. This is the version available on GitHub as at 27/07/2011\n\n== Screenshots ==\n\n1. Unavailable\n\n== Credits ==\n\nAn [Enthropia Labs](http://www.enthropia.com/labs/) project.\n\nCreated by David Cramer ([mail](mailto:dcramer@gmail.com), [website](http://www.davidcramer.net)).\n\nMaintained by Robert McGhee ([mail](mailto:robert@robertmcghee.co.uk), [website](http://wwww.robertmcghee.co.uk)).\n\nCore concept inspired by [RSS Stream](http://rick.jinlabs.com/code/rss-stream).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcramer%2Fwp-lifestream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcramer%2Fwp-lifestream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcramer%2Fwp-lifestream/lists"}