Plugin info

Total downloads: 2,381
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 8/17/2015 (3789 days ago)
Added to WordPress: 6/4/2012 (13 years old)
Minimum WordPress version: 3.4
Tested up to WordPress version: 4.3.34
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3789 days ago

20/100

Is Date-based Taxonomy Archives abandoned?

Possibly abandoned (last update 3789 days ago).

Compatibility

Requires WordPress: 3.4
Tested up to: 4.3.34
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

MB Custom Post Types & Custom Taxonomies
Rating 4.7/5 (13 reviews)Active installs 10,000
Post Types Unlimited
Rating 5.0/5 (9 reviews)Active installs 10,000
HTML Import 2
Rating 4.3/5 (32 reviews)Active installs 6,000
Admin Taxonomy Filter
Rating 4.5/5 (14 reviews)Active installs 5,000
Multi-column Tag Map
Rating 4.6/5 (62 reviews)Active installs 4,000

Description

Add support for date-based taxonomy archives.

Includes a function for rendering an unordered list of years with months, linked to corresponding date-based taxonomy archive, nested therein.

This plugin is intended for use by plugin and theme developers. It simply adds support for date-based taxonomy archives, but has no native user interface.

Development is over on GitHub: https://github.com/ethitter/Date-based-Taxonomy-Archives/.

Installation

  1. Upload date-based-taxonomy-archives to /wp-content/plugins/.
  2. Activate plugin through the WordPress Plugins menu.
  3. Go to Settings > Permalinks and click Save Changes to refresh permalinks.

Frequently Asked Questions

How do I use this plugin?

Add the function date_based_taxonomy_archives() to any template element that appears on a taxonomy archive. The function accepts an array containing the following arguments:

  • taxonomies – array of taxonomy slugs.
  • show_post_count – boolean value specifying whether or not to display show counts in parenthesis after archive links.
  • limit – integer specifying the number of archive links to show. Omit to show all archive links for the specified taxonomy.
  • before – output to display before archive link.
  • after – output to display after archive link.
  • echo – boolean value specifying whether to echo or return archive links.

What filters does this plugin include?

  • date_based_taxonomy_archives_args – applied to arguments passed to date_based_taxonomy_archives() at runtime.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.3.1

  • Security update: correct misuse of add_query_arg() as identified by Sucuri: https://blog.sucuri.net/2015/04/security-advisory-xss-vulnerability-affecting-multiple-wordpress-plugins.html.

0.3

  • Remove unnecessary uses of $wpdb->prepare() that were incorrectly implemented, resulting in PHP warnings when WP_DEBUG was enabled.
  • Convert plugin to a singelton pattern instead of relying on a global variable.
  • Protect class variables and expose them only through a magic getter. Allows for more flexibility in adding class variables in the future.
  • Localize large post counts for display, when requested.
  • Correct phpdoc implementation.

0.2

  • Initial public release