Changeset 825762
- Timestamp:
- 12/19/2013 09:05:26 PM (12 years ago)
- Location:
- extended-categories-widget/trunk
- Files:
-
- 6 edited
-
2.8/class/avh-ec.core.php (modified) (1 diff)
-
3.3/class/avh-ec.core.php (modified) (1 diff)
-
3.6/class/avh-ec.category-group.php (modified) (1 diff)
-
3.6/class/avh-ec.core.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
widget_extended_categories.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extended-categories-widget/trunk/2.8/class/avh-ec.core.php
r821616 r825762 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '3.9. 0';30 $this->version = '3.9.1'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.3/class/avh-ec.core.php
r821616 r825762 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '3.9. 0';30 $this->version = '3.9.1'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.6/class/avh-ec.category-group.php
r790052 r825762 114 114 if (false === $this->getTermIDBy('slug', 'none')) { 115 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')) { 116 122 $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 // Fill the standard groups with all categories120 $this->setCategoriesForGroup($home_group_id['term_id'], $all_categories);121 123 $this->setWidgetTitleForGroup($all_group_id['term_id'], ''); 122 $this->setWidgetTitleForGroup($home_group_id['term_id'], '');123 124 } 124 125 -
extended-categories-widget/trunk/3.6/class/avh-ec.core.php
r821616 r825762 35 35 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 36 36 37 $this->version = '3.9. 0';37 $this->version = '3.9.1'; 38 38 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 39 39 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/readme.txt
r821616 r825762 5 5 Requires at least: 2.3 6 6 Tested up to: 3.8 7 Stable tag: 3.9. 07 Stable tag: 3.9.1 8 8 9 9 The AVH Extended Categories Widgets gives you three widgets for displaying categories. … … 140 140 141 141 == Changelog == 142 = Version 3.9.1 = 143 * When the category group home is deleted there are MySQL errors. 144 142 145 = Version 3.9.0 = 143 146 * Add CSS classes to output when on a single post. -
extended-categories-widget/trunk/widget_extended_categories.php
r821616 r825762 4 4 * Plugin URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: Replacement of the category widget to allow for greater customization of the category widget. 6 * Version: 3.9. 06 * Version: 3.9.1 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset
for help on using the changeset viewer.