=== WP-EasyArchives ===
Contributors: mg12
Donate link: http://www.neoease.com/plugins/
Tags: archives, page, AJAX, widget
Requires at least: 2.2
Tested up to: 3.0
Stable tag: 1.5.2

Display your archive tree that's search engine friendly on custom page.

== Description ==

Display your archive tree that's search engine friendly on custom page, Widgets is supported.

在您的定制页面显示对搜索引擎友好的树形结构存档列表, 支持 Widgets.

**Supported Languages:**

* US English/en_US (default)
* 简体中文/zh_CN (translate by [mg12](http://www.neoease.com/))
* Albanian/sq_AL (translate by [Romeo Shuka](http://www.romeolab.com/))
* Belorussian/by_BY (translate by Marcis Gasuns)
* Czech/cs_CZ (translate by [Ladislav Prskavec](http://blog.prskavec.net/))
* Français/fr_FR (translate by [Jean-Michel MEYER](http://www.li-an.fr/blog/))
* Hungarian/hu_HU (translate by János Csárdi-Braunstein)
* Italian/it_IT (translate by [Gianni Diurno](http://gidibao.net/))
* Lithuania/lt_LT (translate by [Mantas Malcius](http://mantas.malcius.lt/))
* Polish/pl_PL (translate by [Artur](http://www.diariusz.net/))
* Russian/ru_RU (translate by kate)
* Spanish/es_ES (translate by David Tejedor)
* Türkçe/tr_TR (translate by [Hamdi Ömer Faruk](http://ramerta.com/))

**Demo:**

[http://www.neoease.com/archives/](http://www.neoease.com/archives/)

== Installation ==

1. Unzip archive to the '/wp-content/plugins/' directory
2. Activate the plugin through the 'Plugins' menu in WordPress
3. This is 3 ways to add the WP-EasyArchives widget to the sidebar:
    * (widget) Go to 'Design->Widgets', and add the WP-EasyArchives to your blog, it'll display on sidebar.
    * (widget) In sidebar.php add the following line:
****

    <div class="widget">
        <h3>Monthly Archives</h3>
        <?php wp_easyarchives_widget(); ?>
    </div>

    * (page) In your template file add the following lines:
****

    <?php wp_easyarchives(); ?>

**Arguments:**

    NAME        TYPE          DESCRIPTION                    DEFAULT VERSIONS
    limit       integer       The number of archives.        6       1.0+
    mode        last/all/none Display mode.                  last    1.0+
    page        true/false    Show page items.               false   1.0+

**Using Examples:**

    <?php wp_easyarchives('limit=12'); ?>
    <?php wp_easyarchives('mode=all&page=false'); ?>
    <?php wp_easyarchives('mode=none&page=true'); ?>

**Custom CSS:**

* WP-EasyArchives will load wp-easyarchives.css from your theme directory if it exists.
* If it doesn't exists, it will load the default style that comes with WP-EasyArchives.

== Screenshots ==

1. WP-EasyArchives.
2. WP-EasyArchives widget.

== Changelog ==

****

    VERSION DATE       TYPE   CHANGES
    1.5.2   2010/06/24 NEW    Added Albanian language support. (Thanks Romeo Shuka)
                       NEW    Added Russian language support. (Thanks kate)
                       FIX    Hide 'auto-draft' and 'trash' posts.
                       REMOVE Remove the HTML comments.
    1.5.1   2009/08/05 NEW    Added Spanish language support. (Thanks David Tejedor)
                       MODIFY Update Italian translation. (Thanks Gianni Diurno)
                       MODIFY Update Hungarian translation. (Thanks János)
                       FIXED  Fixed limit arguement.
    1.5     2009/06/12 NEW    Compatible with WordPress 2.8.
                       NEW    jQuery is now supported. (JavaScript library option)
                       NEW    Added Belorussian language support. (Thanks Marcis Gasuns)
                       MODIFY Decrease access time to access database.
                       MODIFY Update Simplified Chinese translation.
                       FIX    Fixed the messy code when changed pages.
    1.0.3   2009/05/04 NEW    Added Polish language support. (Thanks Artur)
                       NEW    Added Lithuania language support. (Thanks Mantas Malcius)
                       FIX    Fixed the month links. (Thanks ZFreet CHeung)
    1.0.2   2009/04/18 NEW    Added Czech language support. (Thanks Ladislav Prskavec)
                       NEW    Added French language support. (Thanks Jean-Michel MEYER)
                       MODIFY Update Italian translation.
                       MODIFY Update Hungarian translation.
                       FIX    Fixed a bug about date to show the posts.
    1.0.1   2009/03/18 NEW    Added Turkish language support. (Thanks Ömer Faruk)
                       NEW    Added Hungarian language support. (Thanks János Csárdi-Braunstein)
                       FIX    Fixed bug: The script does not check the publication date, show all future posts.
    1.0     2009/02/05 NEW    Added WordPress Widget support.
                       NEW    Added 'limit' argument.
                       NEW    Added the number of posts in all the monthly archives.
                       FIX    Fixed a bug when WordPress root directory in sub folder.
                       FIX    Fixed a bug about year filter.
    0.2     2009/01/15 NEW    Added Italian language support. (Thanks Gianni Diurno)
                       MODIFY Changed author username to display name.
                       FIX    Apply translations to monthly dates.
    0.1     2009/01/14 NEW    Years filter.
                       NEW    Authors filter.
                       NEW    Basic features.
