Title: WP-Lifestream2
Author: Shelby DeNike
Published: <strong>22 ກັນຍາ 2011</strong>
Last modified: 12 ກຸມພາ 2012

---

ຄົ້ນຫາປລັກອິນ

ປລັກອິນນີ້ **ຍັງບໍ່ທັນໄດ້ຮັບການທົດສອບກັບ WordPress 3 ເວີຊັນຫຼັກຫຼ້າສຸດ**. ມັນອາດຈະ
ບໍ່ໄດ້ຮັບການເບິ່ງແຍງ ຫຼື ສະໜັບສະໜູນອີກຕໍ່ໄປ ແລະ ອາດມີບັນຫາການເຮັດວຽກຮ່ວມກັນເມື່ອ
ໃຊ້ກັບ WordPress ເວີຊັນທີ່ໃໝ່ກວ່າ.

![](https://s.w.org/plugins/geopattern-icon/wp-lifestream2.svg)

# WP-Lifestream2

 ໂດຍ [Shelby DeNike](https://profiles.wordpress.org/sdenike/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/wp-lifestream2.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/wp-lifestream2/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/wp-lifestream2/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/wp-lifestream2/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/wp-lifestream2/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/wp-lifestream2/)

## ຄຳອະທິບາຍ

Lifestream displays your social feeds and photos much like you would see it on many
of the social networking sites.

### Requirements

 * PHP 5
 * WordPress 2.8 or newer

### Features

 * Personalizable CSS classes.
 * Detailed configuration options.
 * Supports nearly every major social networking website
 * Unlimited number of feeds in your Lifestream.
 * Supports grouping of events.
 * Localization ready!
 * Digest available to summarize your activities.
 * WordPress MU is supported.

### Built-in Feeds

The 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.

 * Facebook
 * Digg
 * Blog
 * Twitter
 * Reddit
 * De.licio.us
 * GetGlue
 * Instapaper
 * Jaiku
 * Last.fm (Revamped plugin in 0.38)
 * Flickr (Improved display in 0.39)
 * Photobucket
 * Pownce
 * YouTube
 * Google Plus
 * Yelp
 * MySpace Blog
 * Skitch
 * Identi.ca
 * Pandora
 * TwitPic
 * Pict.Mobi
 * Vimeo
 * StumbleUpon
 * Tumblr
 * Ma.gnolia
 * Zooomr
 * Blip.fm
 * Brightkite
 * Picasa (Web)
 * Kongregate
 * Viddler
 * coComment
 * FoodFeed
 * MyEpisodes
 * Mixx
 * SlideShare
 * Blip.tv
 * Steam
 * Xbox Live
 * Github
 * Readernaut
 * ScrnShots
 * Mobypicture
 * SmugMug
 * DeviantArt
 * BackType
 * LibraryThing
 * Netflix
 * Wikipedia
 * Upcoming.org
 * WordPress Codex
 * Raptr
 * Gowalla
 * Kiva
 * Codaset
 * Foursquare
 * Ustream
 * World of Warcraft Armory

Want to add your own? See extensions/README for more information.

### Localization

Currently 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 
lifestream@fauxzen.com

 * Chinese (Simplified)
 * Japanese
 * Polish
 * Danish
 * Italian
 * Bulgarian
 * French
 * German
 * Danish
 * Spanish
 * Swedish
 * Belorussian
 * Catalan

### Credits

An [Enthropia Labs](http://www.enthropia.com/labs/) project.

Created by David Cramer ([mail](https://lo.wordpress.org/plugins/wp-lifestream2/dcramer@gmail.com?output_format=md),
[website](http://www.davidcramer.net)).

Maintained by Robert McGhee ([mail](https://lo.wordpress.org/plugins/wp-lifestream2/robert@robertmcghee.co.uk?output_format=md),
[website](http://wwww.robertmcghee.co.uk)).

Core concept inspired by [RSS Stream](http://rick.jinlabs.com/code/rss-stream).

## ການຕິດຕັ້ງ

Upload the plugin into `/wp-content/plugins/`. You should end up with `/wp-content/
plugins/lifestream/`.

Activate the plugin under the “Plugins” menu.

Visit “Lifestream” -> “Settings” to configure the basic options, and add feeds.

There are severals methods in which you can use Lifestream in a WordPress page.

The easiest way is to use the normal context handler (works in pages and posts):

    ```
    [lifestream]
    ```

Another method requires a [custom WordPress page](https://codex.wordpress.org/Pages#Page_Templates),
or the use of a template, and is a simple function call:

    ```
    <?php lifestream(); ?>
    ```

You may also specify several parameters in the `lifestream` method (useful for sidebar
display). These should be in the standard key=>value format for PHP calls.

 * `(int) offset`: defaults to 0
 * `(int) limit`: defaults to ’50’
 * `(string) date_interval`: defaults to ‘1 month’
 * `(boolean) break_events`: defaults to false – forces grouped events to be single
 * `(array) user_ids`: defaults to all users — specify the ids of users to show
 * `(array) feed_types`: defaults to all feeds — specify the feed keys (e.g. twitter)
   to show
 * `(array) feed_ids`: defaults to all feeds — specify the ids of feeds to show,
   also overrides `feed_types` setting

For example:

    ```
    [lifestream limit="10"]
    ```

For 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.

Example:

    ```
    <ul>
    <?php
    $options = array('limit' => 50);
    $events = $lifestream->get_events($options);

    foreach ($events as $event)
    {
        echo '<li>'.$event->render($options).'</li>';
    }
    ?>
    </ul>
    ```

Another popular example, would to be show your current Twitter, or Facebook status
somewhere in your templates:

    ```
    $events = $lifestream->get_events(array('feed_types'=>array('twitter'), 'number_of_results'=>1, 'break_groups'=>true);
    $event = $events[0];

    // to render it with links
    echo $event->feed->render_item($event, $event->data);

    // or render just the text
    echo $event->data['title'];
    ```

Or, use our handy shortcuts:

    ```
    <?php lifestream_twitter_status(); ?>
    ```

And

    ```
    <?php lifestream_facebook_status(); ?>
    ```

## ການຣີວິວ

ບໍ່ມີການຣີວິວສຳລັບປລັກອິນນີ້.

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“WP-Lifestream2” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມໃນ
ການພັດທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ Shelby DeNike ](https://profiles.wordpress.org/sdenike/)

[ແປ “WP-Lifestream2” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/wp-lifestream2)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/wp-lifestream2/), ກວດເບິ່ງ
[ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/wp-lifestream2/), ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/wp-lifestream2/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/wp-lifestream2/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 1.1.4

 * Removed Amazon plugin as it was no longer valid
 * Updated Google+ plugin so that it works again.

#### 1.1.3

 * Fixed delicious feed URL per this forum [https://wordpress.org/support/topic/plugin-wp-lifestream2-fix-for-delicious-feeds](https://wordpress.org/support/topic/plugin-wp-lifestream2-fix-for-delicious-feeds)
   post
 * Adjusted changelog to have newest changes first.

#### 1.1.2

 * Minor cleanup of various code

#### 1.1.1

 * Fixed Google+ extension
 * Removed Google Reader extension
 * Removed a Changelog/Forum link in Dashboard
 * Removed Screenshot Tab as those no longer apply at this time

#### 1.1

 * Branched from the GitHub release on 09/20/2011
 * Added Pict.Mobi extension
 * Fixed Twitter extension
 * Removed Hulu, iTunes as they no longer offer the feed

#### 1.0

 * This updated version containing a whole load of fixes and more plugins. This 
   is the version available on GitHub as at 27/07/2011

#### 0.99.9.8-BETA

 * The last release by David Cramer

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.1.4**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **14 ປີ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **10+**
 *  ເວີຊັນ WordPress ** 2.8 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **3.3.2**
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/wp-lifestream2/)
 * ແທັກ
 * [lifestream](https://lo.wordpress.org/plugins/tags/lifestream/)[miniblogging](https://lo.wordpress.org/plugins/tags/miniblogging/)
   [rss](https://lo.wordpress.org/plugins/tags/rss/)[social](https://lo.wordpress.org/plugins/tags/social/)
   [twitter](https://lo.wordpress.org/plugins/tags/twitter/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/wp-lifestream2/advanced/)

## ການໃຫ້ຄະແນນ

ຍັງບໍ່ມີການສົ່ງຄຳວິຈານເທື່ອ.

[Your review](https://wordpress.org/support/plugin/wp-lifestream2/reviews/#new-post)

[ເບິ່ງ ຄຳຄິດເຫັນ ທັງໝົດ](https://wordpress.org/support/plugin/wp-lifestream2/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ Shelby DeNike ](https://profiles.wordpress.org/sdenike/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/wp-lifestream2/)