Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3 to 2.3.1
- 2.8/class/avh-ec.core.php +2 -2
- readme.txt +4 -1
- widget-pre2.8.php +1 -1
- widget_extended_categories.php +1 -1
2.8/class/avh-ec.core.php
CHANGED
@@ -15,7 +15,7 @@ class AVHExtendedCategoriesCore
|
|
15 |
*/
|
16 |
function __construct ()
|
17 |
{
|
18 |
-
$this->version = '2.3';
|
19 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
20 |
$db_version = 1;
|
21 |
$this->db_options_core = 'avhec';
|
@@ -349,7 +349,7 @@ class AVHExtendedCategoriesCore
|
|
349 |
* @param string|array $args Optional. Override default arguments.
|
350 |
* @return string HTML content only if 'echo' argument is 0.
|
351 |
*/
|
352 |
-
function
|
353 |
{
|
354 |
$defaults = array ('show_option_all' => '', 'orderby' => 'name', 'order' => 'ASC', 'show_last_update' => 0, 'style' => 'list', 'show_count' => 0, 'hide_empty' => 1, 'use_desc_for_title' => 1, 'child_of' => 0, 'feed' => '', 'feed_type' => '', 'feed_image' => '', 'exclude' => '', 'exclude_tree' => '', 'current_category' => 0, 'hierarchical' => true, 'title_li' => __( 'Categories' ), 'echo' => 1, 'depth' => 0 );
|
355 |
|
15 |
*/
|
16 |
function __construct ()
|
17 |
{
|
18 |
+
$this->version = '2.3.1';
|
19 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
20 |
$db_version = 1;
|
21 |
$this->db_options_core = 'avhec';
|
349 |
* @param string|array $args Optional. Override default arguments.
|
350 |
* @return string HTML content only if 'echo' argument is 0.
|
351 |
*/
|
352 |
+
function avh_wp_list_categories ( $args = '', $selectedonly )
|
353 |
{
|
354 |
$defaults = array ('show_option_all' => '', 'orderby' => 'name', 'order' => 'ASC', 'show_last_update' => 0, 'style' => 'list', 'show_count' => 0, 'hide_empty' => 1, 'use_desc_for_title' => 1, 'child_of' => 0, 'feed' => '', 'feed_type' => '', 'feed_image' => '', 'exclude' => '', 'exclude_tree' => '', 'current_category' => 0, 'hierarchical' => true, 'title_li' => __( 'Categories' ), 'echo' => 1, 'depth' => 0 );
|
355 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.avirtualhome.com/wordpress-plugins/
|
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 2.8
|
7 |
-
Stable tag: 2.3
|
8 |
|
9 |
The AVH Extended Categories Widget gives you two widgets for displaying categories.
|
10 |
== Description ==
|
@@ -73,6 +73,9 @@ I'll keep a list of translators and their websites here in the readme.txt and on
|
|
73 |
None
|
74 |
|
75 |
== Changelog ==
|
|
|
|
|
|
|
76 |
= Version 2.3 =
|
77 |
* RFC: You can change the text Select Category, without editing any translation file.
|
78 |
* Bugfix: Selecting one parent wouldn;t show it's children.
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 2.8
|
7 |
+
Stable tag: 2.3.1
|
8 |
|
9 |
The AVH Extended Categories Widget gives you two widgets for displaying categories.
|
10 |
== Description ==
|
73 |
None
|
74 |
|
75 |
== Changelog ==
|
76 |
+
= Version 2.3.1 =
|
77 |
+
* Bugfix: Undefined function
|
78 |
+
|
79 |
= Version 2.3 =
|
80 |
* RFC: You can change the text Select Category, without editing any translation file.
|
81 |
* Bugfix: Selecting one parent wouldn;t show it's children.
|
widget-pre2.8.php
CHANGED
@@ -7,7 +7,7 @@ function widget_extended_categories_init() {
|
|
7 |
}
|
8 |
|
9 |
function widget_extended_categories($args, $number = 1) {
|
10 |
-
$version = '2.3';
|
11 |
// Check for version
|
12 |
require (ABSPATH . WPINC . '/version.php');
|
13 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
7 |
}
|
8 |
|
9 |
function widget_extended_categories($args, $number = 1) {
|
10 |
+
$version = '2.3.1';
|
11 |
// Check for version
|
12 |
require (ABSPATH . WPINC . '/version.php');
|
13 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
widget_extended_categories.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Extended Category Widget
|
4 |
Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
|
5 |
Description: Replacement of the category widget to allow for greater customization of the category widget.
|
6 |
-
Version: 2.3
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|
3 |
Plugin Name: Extended Category Widget
|
4 |
Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
|
5 |
Description: Replacement of the category widget to allow for greater customization of the category widget.
|
6 |
+
Version: 2.3.1
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|