Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 3.9.1 |
Comparing to | |
See all releases |
Code changes from version 3.9.0 to 3.9.1
- 2.8/class/avh-ec.core.php +1 -1
- 3.3/class/avh-ec.core.php +1 -1
- 3.6/class/avh-ec.category-group.php +5 -4
- 3.6/class/avh-ec.core.php +1 -1
- readme.txt +4 -1
- widget_extended_categories.php +1 -1
2.8/class/avh-ec.core.php
CHANGED
@@ -27,7 +27,7 @@ class AVH_EC_Core
|
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
-
$this->version = '3.9.
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
+
$this->version = '3.9.1';
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
3.3/class/avh-ec.core.php
CHANGED
@@ -27,7 +27,7 @@ class AVH_EC_Core
|
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
-
$this->version = '3.9.
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
+
$this->version = '3.9.1';
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
3.6/class/avh-ec.category-group.php
CHANGED
@@ -113,14 +113,15 @@ class AVH_EC_Category_Group
|
|
113 |
$all_categories = $this->getAllCategoriesTermID();
|
114 |
if (false === $this->getTermIDBy('slug', 'none')) {
|
115 |
$none_group_id = wp_insert_term('none', $this->taxonomy_name, array('description' => __('This group will not show the widget.', 'avh-ec')));
|
116 |
-
$all_group_id = wp_insert_term('All', $this->taxonomy_name, array('description' => __('Holds all the categories.', 'avh-ec')));
|
117 |
-
$home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description' => __('This group will be shown on the front page.', 'avh-ec')));
|
118 |
|
119 |
-
|
120 |
$this->setCategoriesForGroup($home_group_id['term_id'], $all_categories);
|
121 |
-
$this->setWidgetTitleForGroup($all_group_id['term_id'], '');
|
122 |
$this->setWidgetTitleForGroup($home_group_id['term_id'], '');
|
123 |
}
|
|
|
|
|
|
|
|
|
124 |
|
125 |
$options = get_option($this->db_options_widget_titles);
|
126 |
if (!$options) {
|
113 |
$all_categories = $this->getAllCategoriesTermID();
|
114 |
if (false === $this->getTermIDBy('slug', 'none')) {
|
115 |
$none_group_id = wp_insert_term('none', $this->taxonomy_name, array('description' => __('This group will not show the widget.', 'avh-ec')));
|
|
|
|
|
116 |
|
117 |
+
$home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description' => __('This group will be shown on the front page.', 'avh-ec')));
|
118 |
$this->setCategoriesForGroup($home_group_id['term_id'], $all_categories);
|
|
|
119 |
$this->setWidgetTitleForGroup($home_group_id['term_id'], '');
|
120 |
}
|
121 |
+
if (false === $this->getTermIDBy('slug', 'all')) {
|
122 |
+
$all_group_id = wp_insert_term('All', $this->taxonomy_name, array('description' => __('Holds all the categories.', 'avh-ec')));
|
123 |
+
$this->setWidgetTitleForGroup($all_group_id['term_id'], '');
|
124 |
+
}
|
125 |
|
126 |
$options = get_option($this->db_options_widget_titles);
|
127 |
if (!$options) {
|
3.6/class/avh-ec.core.php
CHANGED
@@ -34,7 +34,7 @@ class AVH_EC_Core
|
|
34 |
*/
|
35 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
36 |
|
37 |
-
$this->version = '3.9.
|
38 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
39 |
$this->db_options_core = 'avhec';
|
40 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
34 |
*/
|
35 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
36 |
|
37 |
+
$this->version = '3.9.1';
|
38 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
39 |
$this->db_options_core = 'avhec';
|
40 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
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: 3.8
|
7 |
-
Stable tag: 3.9.
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
@@ -139,6 +139,9 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
|
|
139 |
None
|
140 |
|
141 |
== Changelog ==
|
|
|
|
|
|
|
142 |
= Version 3.9.0 =
|
143 |
* Add CSS classes to output when on a single post.
|
144 |
* Added language: Serbian - Српски (sr) thanks to Borisa Djuraskovic - http://www.webhostinghub.com
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 3.8
|
7 |
+
Stable tag: 3.9.1
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
139 |
None
|
140 |
|
141 |
== Changelog ==
|
142 |
+
= Version 3.9.1 =
|
143 |
+
* When the category group home is deleted there are MySQL errors.
|
144 |
+
|
145 |
= Version 3.9.0 =
|
146 |
* Add CSS classes to output when on a single post.
|
147 |
* Added language: Serbian - Српски (sr) thanks to Borisa Djuraskovic - http://www.webhostinghub.com
|
widget_extended_categories.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: AVH Extended Categories Widgets
|
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: 3.9.
|
7 |
* Author: Peter van der Does
|
8 |
* Author URI: http://blog.avirtualhome.com/
|
9 |
*
|
3 |
* Plugin Name: AVH Extended Categories Widgets
|
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: 3.9.1
|
7 |
* Author: Peter van der Does
|
8 |
* Author URI: http://blog.avirtualhome.com/
|
9 |
*
|