Title: JS Archive List
Author: Miguel Useche
Published: <strong>Onwa-isii 27, 2009</strong>
Last modified: Onwa-iri 3, 2026

---

Search plugins

![](https://ps.w.org/jquery-archive-list-widget/assets/banner-772x250.jpg?rev=2738248)

![](https://ps.w.org/jquery-archive-list-widget/assets/icon.svg?rev=2738248)

# JS Archive List

 By [Miguel Useche](https://profiles.wordpress.org/skatox/)

[Download](https://downloads.wordpress.org/plugin/jquery-archive-list-widget.6.3.1.zip)

 * [Details](https://ibo.wordpress.org/plugins/jquery-archive-list-widget/#description)
 * [Reviews](https://ibo.wordpress.org/plugins/jquery-archive-list-widget/#reviews)
 *  [Installation](https://ibo.wordpress.org/plugins/jquery-archive-list-widget/#installation)
 * [Development](https://ibo.wordpress.org/plugins/jquery-archive-list-widget/#developers)

 [Support](https://wordpress.org/support/plugin/jquery-archive-list-widget/)

## Description

This plugin provides a widget and a filter to display a collapsible archive list
in your sidebar or posts using the JS JS library.

#### Features

 1.  Support for Gutenberg blocks. Add it to any FSE theme or Gutenberg compatible 
     theme.
 2.  Display a collapsed list of your archives to reduce space.
 3.  Uses vanilla JS to add effects and to be compatible with all browsers.
 4.  Select your expand/collapse symbol and date format.
 5.  Support for archive filters.
 6.  Auto expands current/select year from posts.
 7.  Select the categories to exclude
 8.  Multiple instances support.
 9.  Shortcode support _[JsArchiveList]_
 10. Generates valid HTML code.
 11. Supports multiple languages.
 12. Compatible with most JS cache and minify plugins.
 13. And more to come…

### Configuration

 * Title: title of the widget.
 * Trigger Symbol: characters to be displayed as bullet.
 * Effect: Effect to use.
 * Month Format: month’s display format of the month.
 * Expand: when to expand the content of the list.
 * Hide years from before: older years will be hidden under a link. To save space
   in the page on old sites.
 * Show days inside month list: group posts by day.
 * Show number of posts: display how many post are published in the year or in the
   month.
 * Show only posts from selected category: show only posts from the selected category
   when visiting a category page.
 * Only expand/reduce by clicking the symbol: select if animations start when click
   the link or just the bullet.
 * Open links in a new tab: opens archive and post links in a new browser tab/window.
 * Only expand one at the same time: select if you want to have only one expanded
   at the same time.
 * Show posts under months: show post’s title under months.
 * Show post date next to post title: show post’s date next to post title.
 * Sort posts by: select how to sort the posts under months.
 * Include or Exclude categories: Select the categories to include or exclude.

## Screenshots

 * [[
 * A list of the archives, archives for each month are hidden under years.
 * [[
 * A list of archives and its month archives expanded.
 * [[
 * Block options to configure the list.

## Blocks

This plugin provides 1 block.

 *   JS Archive List A block for displaying an archive list with some effects.

## Installation

 1. Make a directory js-archive-list-widget under _/wp-content/plugins/_
 2. Upload all downloaded files to _/wp-content/plugins/js-archive-list-widget/_
 3. Activate plugin at the plugins section.
 4. Go to _Presentation -> Widgets_ and drag the JS Archive List to your sidebar and
    configure it, if you want to display it inside a post then write _[JSArchiveList]_
    at the location where it will be shown and save it.

## FAQ

### Why there are 2 widgets?

Since version 6.0 the widget was migrated to a Gutenberg block. So there will be
a Gutenberg block with the most modern code and compatibility and a legacy version
that is 100% made in PHP to keep compatibility with older installations.

### Why this plugin is not working?

By support experience, like 99% of problems are due to:

 * There’s a Javascript error caused by other plugin, and it stops any further code
   execution, check your browser’s logs to find the problem and deactivate the conflict
   plugin.
 * Your template doesn’t have a wp_footer() function, this plugin requires this 
   function to load JS code at the end of the website to improve speed.

### I’m using custom permalinks, How can I change the links?

Currently, there’s no function in WP API for getting link for date archives when
using custom permalinks. So, you’ll need to modify/hack the source code to support
your custom link structure, you can do this by changing the lines where I call **
get_month_link** and **get_year_link**.

### How can I exclude some categories from navigation?

This plugin only shows the posts from included/excluded categories. It does not 
remove them from the navigation. If you want to do it you have to install a 3rd 
party plugin like _Ultimate Category Excluder_ or _Simple Exclude Categories_

### How I can send you a translation?

Send me the translated .mo file to migueluseche(a)skatox.com and indicate the language,
I can read english or spanish, so please write me on these languages.

### Can I use images as bullets or trigger symbols?

Yes, select ‘Empty Space’ as trigger symbol and Save, then you can add any custom
background using CSS,
 just play with the widget’s classes: .jaw_symbol, .jaw_year,.
jaw_month.

### Can I show this list inside posts?

Yes, just add the _JS Archive List_ block or add a shortcode block and write _[JsArchiveList]_
anywhere inside a post
 or page’s contest and it will be replaced for the archive
list when rendering the content. You can add the following parameters to change 
its behavior:

 1.  **showcount** ( boolean ): select if you want to show the count post inside that
     month/year.
 2.  **showpost** ( boolean ): show post’s titles under months.
 3.  **expand** (“none”, “never”, “expand”): never expand by default, current year 
     only and always expand.
 4.  **month_format** (“short”, “full”, “number”): the format of the date.
 5.  **ex_sym**: the expansion symbol.
 6.  **con_sym**: the collapse symbol.
 7.  **only_sym_link**: only expand/collapse when clicking the bullet.
 8.  **effect** (“”, “slide”, “fade”): the JS effect to implement.
 9.  **exclude**: IDs (comma separated) of the categories to exclude.
 10. **type**: ID of the type of the posts to show, this is if you’re using custom 
     type posts. By default will show posts.

So for example:

_[JsArchiveList month\_format=number showpost=1 showcount=1 ex\_sym=+ con\_sym=-
effect=slide type=page]_

Will show a widget with months as numbers, show posts under months and their count,
the symbols are + and – and the effect is fadeIn. You can check source code for 
more information.

### How I contribute to this plugin?

By using it, recommending it to other users, giving it 5 starts at plugin’s WordPress
page, suggesting features or coding new features and finally by **DONATING** using
plugin’s website’s donate link.

### How can I add multiples instances?

Since 2.0 you can add as many instances as you want, but there’s another way to 
do it, just add a new Text widget only with the shortcode [JSArchiveList] then it
will have a new copy of the widget.

### Can I have different instances with different configuration?

Since 2.0 it’s possible. Each instance has its own configuration. Shortcode widgets
are controlled by shortcode attributes.

## Reviews

![](https://secure.gravatar.com/avatar/6ee5fda997b8883e759fdd8d5ab4dafd36c9ebd36b8f6678bb9642294731ab3e?
s=60&d=retro&r=g)

### 󠀁[Easy and perfect](https://wordpress.org/support/topic/easy-and-perfect-48/)󠁿

 [Piani](https://profiles.wordpress.org/webbmasterpianise/) Onwa-anö 8, 2025 1 reply

Easy to install and add to pages and sidebars!

![](https://secure.gravatar.com/avatar/5a9f159d9a026300db13c4ade0bfb4b7c1df18bedc0c3c95adc0bbabbbf52a4c?
s=60&d=retro&r=g)

### 󠀁[Great Plugin](https://wordpress.org/support/topic/great-plugin-38624/)󠁿

 [katribu](https://profiles.wordpress.org/katribu/) Onwa-itolu 16, 2024 1 reply

Exactly the plugin in I was looking for – A way to show only one of my posts categories
in a drop down collapsible menu! I have tried some other plugins, but none of them
gave me the customizable options I was looking for.

![](https://secure.gravatar.com/avatar/a45f3df2237df811aeee3133aa063555b82bb1633ea09521c0c26c4802316cf8?
s=60&d=retro&r=g)

### 󠀁[Just what I was looking for!](https://wordpress.org/support/topic/just-what-i-was-looking-for-547/)󠁿

 [Luv2RV](https://profiles.wordpress.org/luv2rv/) Onwa-mbu 31, 2023 1 reply

I was approaching 100 posts over a 5 year period on my blog, and the stock archive
widget was getting very long. I was looking for a new plugin that would shrink down
the list, and provide expand/contract options for years and months. Alas I find 
JS Archive List which provided exactly what I was looking for. It offers a smooth
and clean look and feel. A slight problem with the title font/size was quickly resolved
with the assistance from the developer. Kudos to a terrific plugin and a helpful
responsive developer. ⭐️ ⭐️ ⭐️ ⭐️ ⭐️

![](https://secure.gravatar.com/avatar/ec2c638d2ecb3aebc1474ebae68222d9eb41883bf76dca67e53ebd77c5b1b2cb?
s=60&d=retro&r=g)

### 󠀁[Was great, but seems to have stopped working at some point.](https://wordpress.org/support/topic/was-great-but-seems-to-have-stopped-working-at-some-point/)󠁿

 [tomgardner](https://profiles.wordpress.org/tomgardner/) Onwa-anö 2, 2018 5 replies

I’ve had it pointed out to me that this is no longer working as of Oct 2018 Wordpress.
It just shows the jquery tag on the page as text.

![](https://secure.gravatar.com/avatar/1de041ff691cdf677c7ae3c39f5a397bde30fa3a7de1a73bf0a39f2fb68aab77?
s=60&d=retro&r=g)

### 󠀁[Widget](https://wordpress.org/support/topic/widget-152/)󠁿

 [hhtran33](https://profiles.wordpress.org/hhtran33/) Onwa-mbu 31, 2017

It is a great widget.

![](https://secure.gravatar.com/avatar/f5bef995af67ab6377962be0d6b84d9ed68b9805bb9e27884b67d9f8ef9d74da?
s=60&d=retro&r=g)

### 󠀁[Fantastic: Thank you](https://wordpress.org/support/topic/fantastic-thank-you-3/)󠁿

 [WritersPage](https://profiles.wordpress.org/writerspage/) Onwa-asaa 25, 2017 1
reply

Hello Miguel, Jquery archive list widget is great. You have keep the widget simple
but effective. It does what it should. it is difficult to find archive widgets or
plugins. It is even more difficult to find archive widgets and plugins that show
the archives of blog posts, pages or media. Your widget does this and so much more
without making it difficult to use. It is also compatible with other widgets and
plugins. Thank you for a fantastic widget. I wish you continued success with this
widget and all you do. I hope that will consider maintaining this widget and eventually
releasing updates. Best wishes

 [ Read all 46 reviews ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/)

## Contributors & Developers

“JS Archive List” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Miguel Useche ](https://profiles.wordpress.org/skatox/)

“JS Archive List” has been translated into 8 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/jquery-archive-list-widget/contributors)
for their contributions.

[Translate “JS Archive List” into your language.](https://translate.wordpress.org/projects/wp-plugins/jquery-archive-list-widget)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/jquery-archive-list-widget/),
check out the [SVN repository](https://plugins.svn.wordpress.org/jquery-archive-list-widget/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/jquery-archive-list-widget/)
by [RSS](https://plugins.trac.wordpress.org/log/jquery-archive-list-widget/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 6.3.1

 * Added a new block setting to open archive and post links in a new tab/window.
 * Updated the frontend link rendering so year, month, and post links include `target
   ="_blank"` when the option is enabled.
 * Added unit tests for the new “open links in a new tab” behavior.
 * Updated translation template with the new block setting label.

#### 6.3.0

 * Added block-only support for archive lists of custom post types via a new post
   type selector in the block settings.
 * Added taxonomy-aware term selection in the block editor and clear saved terms
   when the post type or taxonomy changes.
 * Updated the dynamic block frontend, REST API, and datasource to render the same
   expandable archive UI for selected custom post types and hierarchical taxonomies.
 * Improved automated test coverage for custom taxonomy filtering and refreshed 
   the PHPUnit toolchain for current development environments.

#### 6.2.1

 * Fixed PHP 8.3 strict typing compatibility in `class-jq-archive-list-datasource.
   php` by normalizing values before `explode()` calls.

#### 6.2.0

 * Fixed unsafe deserialization of shortcode category filters by safely parsing 
   serialized category IDs and rejecting object payloads.
 * Aligned text domain with the plugin slug across PHP, JS, and translation files.
 * Updated plugin/readme headers (requires, license, and license URI).
 * Added WordPress PHPUnit test suite setup docs and installer script.
 * Updated “Tested up to” to the latest WordPress release.

#### 6.1.7

 * Updating development libraries to be up to date.
 * Updating jest config to use the same rendered as the WP dependency code.
 * Escaped post titles in legacy HTML output to prevent injection in classes/class-
   jq-archive-list-widget.php.
 * Stopped duplicate id=”app” and mounted React for all block instances via .jalw-
   archive-list in classes/frontend/class-js-archive-list-frontend-widget.php and
   
   src/view.js.
 * Removed post type settings from legacy and block widgets and ignore any saved
   block type attributes during render.
 * Fixed boolean parsing for editor preview config in src/components/frontend/context/
   ConfigContext.js.
 * Fixed category archive context to use the queried term in classes/frontend/class-
   js-archive-list-frontend-widget.php.
 * Removed stray console logging in assets/js/jal.js.
 * Avoided PHP notice for missing include-or-exclude and escaped widget title in
   form in classes/class-jq-archive-list-widget.php.
 * Ensured include/exclude category selection supports multiple categories for legacy
   and block widgets.

#### 6.1.6

 * Improve plugin’s backend code to be more efficient, secure and faster.
 * Solving the bug of loading the text domain at the wrong time.

#### 6.1.5

 * Legacy widget: solving include/exclude not working in new WordPress installations.

#### 6.1.4

 * Solving a bug when expand was selected to all and no symbol was set.

#### 6.1.3

 * Legacy widget: solving settings save bug when changing checkboxes.
 * Legacy widget: solving settings load when using the widget mode.
 * Legacy widget: rewriting clicking event function to avoid bugs and issues with
   certain settings.

#### 6.1.2

 * Solved scrolling bug when clickin day’s link.

#### 6.1.1

 * Solved post’s list bug when using the shortcode.
 * Solved title bug of showing 1 when using the shortcode.
 * Updated translations for spanish and portuguese.

#### 6.1.0

 * Added option to sort month’s posts by id, date or title.
 * Added option to add post’s date to the month’s post list.
 * New option to display posts grouped by day.
 * New option to hide older years in a toggle (good for old sites).
 * Improved frontend code to make it more efficient and slightly faster.
 * Fixed bug of changing the symbol when data was not loaded.
 * Legacy version: added `jawl_widget_title` hook to allow changing the widget’s
   title (helpful for translations).

#### 6.0.5

 * Improved Gutenberg block to be more efficient and faster.
 * Changed block’s animation from CSS to JS to increase compatibility.
 * Changed legacy widget’s animation from CSS to JS to increase compatibility.
 * Fixed shortcode name and updated documentation to reflect the change.
 * Fixing shortcode parameters and values to make it work ok.
 * Adding support for accordion option for the Gutenberg block.

#### 6.0.1

 * Code migrated to Gutenberg block. Now you can use this plugin as a Gutenberg 
   block on any modern theme.
 * The block version reads the archive dynamically. It saves bandwidth and reduces
   old DOM size on old sites.
 * JS code is only loaded if there’s a widget or block is added to page. No more
   always loading JS and CSS code.
 * Updated CSS code to improve animations on all browsers.
 * Depecrated old php version. It will only be on maintenance mode and new Gutenberg
   block will be supported.
 * Improved automated tests and code, to make future versions easier to develop.

#### 5.1

 * Fixed ‘missing array key accordion’ bug.

#### 5.0

 * Removed jQuery dependency and rewrote the plugin in full vanilla Javascript.
 * Added compatibility with Gutenberg’s block.
 * Added option to include categories. You can now just select the categories to
   include.
 * Renamed plugin name, shortcode now it’s [JSArchiveList] but old one is kept for
   backwards compatibility.
 * Improved caret down symbol when selected.
 * Fixed wrong HTML at settings page (thanks to Cosam_jp for the report).
 * Fixed bad use of selected function at settings page (thanks to Cosam_jp for the
   report).
 * Solved expansion bug when current post belong to an excluded category.
 * Solved an expansion/collapse problem when activating this option and excluding
   or including categories.
 * Solved bug when post titles were empty.

#### 4.0.1

 * Better JS file caching: enqueue URL now uses plugin version number when included(
   instead of WordPress version).
 * Solving CSS typo error introduced in 4.0.0
 * Fixing Data Source instance bug (thanks to imlwebadmin for the fix)
 * Solving incompatibility with Recent Post Widget( thanks to Ramanan for the fix).

#### 4.0.0

 * Title is translated on showing, so the widget title is updated in real-time when
   a user switches languages on the site. (thanks to @udi86)
 * Added ‘widget_archive’ class to the widget. Many people requested this.
 * Added Ukrainian and Russian translation (thanks to Alex Popov).
 * Added support for ‘Remove Widget Titles’ plugin.
 * Added option to work as an accordion.
 * Changing collapse icon to – so it has the same width as the + sign.
 * Fixed closing wrong  tag at settings.
 * Fixed double join bug when excluding posts.
 * Formatted code to WordPress standards.
 * Several performance improvements.

#### 3.0.6

 * Fixed some compatibility issues with translations plugins like PolyLang.

#### 3.0.5

 * Fixed Javascript bug present in Internet Explorer 6,7,8,9,10.

#### 3.0.4

 * Shortcut has been changed to [JSArchiveList] because WordPress 4.4 doesn’t let
   spaces in shortcodes.

#### 3.0.3

 * Minor fixes to add total compatibility with WordPress 4.3

#### 3.0.2

 * Solved missing months bug.

#### 3.0.1

 * Solved month linking bug.
 * Checkbox are easier to click at widget’s configuration, now each text is a label.

#### 3.0

 * Complete rewrite of the javascript code, it has less size, easier to understand
   and should work faster.
 * Added support for custom posts, now you can create archive widgets for your custom
   posts.
 * Added **active** CSS class to indicate when a link points to current URL.
 * Added **title** attribute to links to generate valid HTML5 code.
 * Added Dutch translation (thanks to Patrick Schreibing).
 * Migrated category selection to WordPress checkbox tool.
 * Solved bugs when excluding categories.
 * Solved bug of missing **expanded** class on months (thanks to pjarts).
 * Solved not expanding months bug when selecting some options.

#### 2.2

 * Added support for HTTPS, now the plugin generates the correct link if HTTPS is
   being used, thanks to **bridgetwes** for the patch.
 * Added more expansion options, you can select if you want to expand: only on current
   date, current loaded post, both, none or all archives dates.
 * Added an option to show only posts from selected category when visiting a category
   page.

#### 2.0.1

 * Added option to exclude categories when using shortcodes, just add categories’
   ID separated by commas in the exclude attribute.
 * Solved bug of not including JS file when using a filter without any widget.
 * Solved bug of not including JS in some WP installations under Windows.

#### 2.0

 * Huge update thanks to donations! If you upgrade to this version you’ll NEED to
   configure the widget AGAIN, due to architecture rewriting configuration may get
   lost.
 * Added support for multiples instances, finally you can have as many widgets as
   you want without any hack 🙂
 * Added support for dynamic widgets.s
 * Added an option to not have any effect when expanding or collapsing.
 * Added an option to activate the expand/collapse only when clicking the bullet.
 * Removed dynamic generation of the JS file, now you don’t need to write permissions
   on the folder.
 * Rewrote JS code, now it is a single JS file for all instances, improved performance
   and compatible with all cache plugins.
 * Updated translation files for Spanish, Czech, Slovak and Italian.

#### 1.4.2

 * Fixed some several bugs, thanks to Marco Lizza who reviewed the code and fixed
   them. Plugin should be more stable and won’t throw errors when display_errors
   is on.

#### 1.4.1

 * Solved Javascript bug where in some configurations, months and posts links were
   not working.

#### 1.4

 * Updated i10n functions to WordPress 3.5, no more deprecations warning should 
   appear with i10n stuff.
 * Solved the i10n bug of not translating exclude categories label.
 * Improved Javascript code (please save again the configuration to take effect)
 * Better shortcode/filter support. now it has attributes for different behavior
   on instances. (There’s no support for effect and symbol because it is managed
   through the JS file )

#### 1.3

 * Improved query performance and added option to exclude categories. (thanks to
   Michael Westergaard for the work)

#### 1.2.3

 * Fixing i18n bug due to new WordPress changes, now it loads your language (if 
   it was translated) correctly.

#### 1.2.2

 * Fixed the bug of wrong year displaying on pages.
 * JS code is not generated dynamically, now it generates in a separated file. For
   better performance and to support any minify plugins.

#### 1.2.1

 * Improved generated HTML code to be more compatible when JS is off, also helps
   to search engines to navigate through archives pages.
 * Fixed a bug where in some cases a wrong year expanded at home page.
 * Added Slovak translation

#### 1.2

 * Added option to automatically expand current year or post’s year (thanks to Michael
   Westergaard for most of the work)
 * Cleaned code and make it more readable for future hacks from developers.

#### 1.1.2

 * Changed plugin’s JS file loading to the footer, so it doesn’t affect your site’s
   loading speed.
 * Added default value for widget’s title. And it is included in translation files,
   so this can be used in multi-language sites.
 * Plugin translated to Czech (CZ) thanks to Tomas Valenta.

#### 1.1.1

 * Removed   characters, all spacing should be done by CSS.

#### 1.1

 * Added support for multiples instances (by writing [JSArchiveList] on any Text
   widget)
 * Added support for WordPress’ reading filters, like reading permissions using 
   Role Scoper plugin (thanks to Ramiro García for the patch)
 * Improved compatibility with WordPress 3.x

#### 1.0

 * Added support for month’s format
 * Now the jquery archive list can be printed from a post, just write [JSArchiveList]
   anywhere inside the post.
 * Added support for i18n, so you can translate widget configuration’s text to your
   language.
 * Separated JS code from HTML code, so browsers should cache JS content for faster
   processing.
 * Automatic loading of jQuery JS library.
 * Almost all code were rewritten for better maintainer and easy way to add new 
   features.
 * Improved code to be more WordPress compatible.

#### 0.1.3

 * Initial public version.

## Meta

 *  Version **6.3.1**
 *  Last updated **2 weeks ago**
 *  Active installations **3,000+**
 *  WordPress version ** 4.7 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 *  Languages
 * [Czech](https://cs.wordpress.org/plugins/jquery-archive-list-widget/), [Dutch](https://nl.wordpress.org/plugins/jquery-archive-list-widget/),
   [English (US)](https://wordpress.org/plugins/jquery-archive-list-widget/), [Italian](https://it.wordpress.org/plugins/jquery-archive-list-widget/),
   [Japanese](https://ja.wordpress.org/plugins/jquery-archive-list-widget/), [Portuguese (Brazil)](https://br.wordpress.org/plugins/jquery-archive-list-widget/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/jquery-archive-list-widget/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/jquery-archive-list-widget/),
   and [Spanish (Venezuela)](https://ve.wordpress.org/plugins/jquery-archive-list-widget/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/jquery-archive-list-widget)
 * Tags
 * [archive](https://ibo.wordpress.org/plugins/tags/archive/)[block](https://ibo.wordpress.org/plugins/tags/block/)
   [gutenberg](https://ibo.wordpress.org/plugins/tags/gutenberg/)[javascript](https://ibo.wordpress.org/plugins/tags/javascript/)
   [list](https://ibo.wordpress.org/plugins/tags/list/)
 *  [Advanced View](https://ibo.wordpress.org/plugins/jquery-archive-list-widget/advanced/)

## Ratings

 4.8 out of 5 stars.

 *  [  38 5-star reviews     ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/?filter=5)
 *  [  5 4-star reviews     ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/?filter=2)
 *  [  1 1-star review     ](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/jquery-archive-list-widget/reviews/)

## Contributors

 *   [ Miguel Useche ](https://profiles.wordpress.org/skatox/)

## Support

Issues resolved in last two months:

     3 out of 3

 [View support forum](https://wordpress.org/support/plugin/jquery-archive-list-widget/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](http://skatox.com/blog/jquery-archive-list-widget/)