Skip to content
Snippets Groups Projects
Commit 6a78f629 authored by Erick Hitter's avatar Erick Hitter
Browse files

Update readme to reflect changes in v0.3.

parent f9088968
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,8 @@ Contributors: ethitter ...@@ -3,8 +3,8 @@ Contributors: ethitter
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10275434 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10275434
Tags: archive, taxonomy, taxonomies, date Tags: archive, taxonomy, taxonomies, date
Requires at least: 3.4 Requires at least: 3.4
Tested up to: 3.5 Tested up to: 3.6
Stable tag: 0.2 Stable tag: 0.3
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
...@@ -30,7 +30,7 @@ Includes a function for rendering an unordered list of years with months, linked ...@@ -30,7 +30,7 @@ Includes a function for rendering an unordered list of years with months, linked
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: 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. * `taxonomies` - array of taxonomy slugs.
* `show_post_counts` - boolean value specifying whether or not to display show counts in parenthesis after archive links. * `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. * `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. * `before` - output to display before archive link.
* `after` - output to display after archive link. * `after` - output to display after archive link.
...@@ -42,10 +42,20 @@ Add the function `date_based_taxonomy_archives()` to any template element that a ...@@ -42,10 +42,20 @@ Add the function `date_based_taxonomy_archives()` to any template element that a
== Changelog == == Changelog ==
= 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 = = 0.2 =
Initial public release * Initial public release
== Upgrade Notice == == Upgrade Notice ==
= 0.3 =
Maintenance release encouraged for all users. Of note, resolves a PHP warning due to an improper use of `$wpdb->prepare()`.
= 0.2 = = 0.2 =
Initial public release Initial public release
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment