Changeset 1157780
- Timestamp:
- 05/11/2015 09:07:13 AM (11 years ago)
- Location:
- goods-catalog
- Files:
-
- 45 added
- 3 edited
-
tags/0.9.3 (added)
-
tags/0.9.3/goods-cat.php (added)
-
tags/0.9.3/img (added)
-
tags/0.9.3/img/gc.png (added)
-
tags/0.9.3/img/gi.png (added)
-
tags/0.9.3/inc (added)
-
tags/0.9.3/inc/breadcrumbs.php (added)
-
tags/0.9.3/inc/class.goods-categories-taxonomy.php (added)
-
tags/0.9.3/inc/class.goods-post-type.php (added)
-
tags/0.9.3/inc/class.goods-tags-taxonomy.php (added)
-
tags/0.9.3/inc/class.metabox.php (added)
-
tags/0.9.3/inc/class.settings-page.php (added)
-
tags/0.9.3/inc/class.sidebar.php (added)
-
tags/0.9.3/inc/class.wrapper.php (added)
-
tags/0.9.3/inc/functions.php (added)
-
tags/0.9.3/inc/pagination.php (added)
-
tags/0.9.3/inc/shortcodes.php (added)
-
tags/0.9.3/inc/templates.php (added)
-
tags/0.9.3/inc/widgets (added)
-
tags/0.9.3/inc/widgets.php (added)
-
tags/0.9.3/inc/widgets/Widget_Goods_Categories.php (added)
-
tags/0.9.3/inc/widgets/Widget_Goods_Tags.php (added)
-
tags/0.9.3/languages (added)
-
tags/0.9.3/languages/gcat-es_ES.mo (added)
-
tags/0.9.3/languages/gcat-es_ES.po (added)
-
tags/0.9.3/languages/gcat-fr_FR.mo (added)
-
tags/0.9.3/languages/gcat-fr_FR.po (added)
-
tags/0.9.3/languages/gcat-it_IT.mo (added)
-
tags/0.9.3/languages/gcat-it_IT.po (added)
-
tags/0.9.3/languages/gcat-ru_RU.mo (added)
-
tags/0.9.3/languages/gcat-ru_RU.po (added)
-
tags/0.9.3/languages/gcat.pot (added)
-
tags/0.9.3/readme.txt (added)
-
tags/0.9.3/style (added)
-
tags/0.9.3/style/catalog-style.css (added)
-
tags/0.9.3/style/goods-options-style.php (added)
-
tags/0.9.3/templates (added)
-
tags/0.9.3/templates/content-goods_category.php (added)
-
tags/0.9.3/templates/content-goods_grid.php (added)
-
tags/0.9.3/templates/home-goods_catalog.php (added)
-
tags/0.9.3/templates/sidebar-goods.php (added)
-
tags/0.9.3/templates/single-goods.php (added)
-
tags/0.9.3/templates/taxonomy-goods_category.php (added)
-
tags/0.9.3/templates/taxonomy-goods_tag.php (added)
-
tags/0.9.3/templates/wrapper.php (added)
-
trunk/goods-cat.php (modified) (1 diff)
-
trunk/inc/functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
goods-catalog/trunk/goods-cat.php
r1154409 r1157780 5 5 Plugin URI: http://oriolo.wordpress.com/2014/03/25/goods-catalog-wordpress-plugin-that-creates-catalog-of-products/ 6 6 Description: Plugin that creates simple catalog of goods. 7 Version: 0.9. 27 Version: 0.9.3 8 8 Author: Irina Sokolovskaya 9 9 Author URI: http://oriolo.ru/ -
goods-catalog/trunk/inc/functions.php
r1152132 r1157780 208 208 */ 209 209 function gs_thumbnails_support() { 210 add_theme_support( 'post-thumbnails', array ('goods') ); 210 global $_wp_theme_features; 211 212 if( empty($_wp_theme_features['post-thumbnails']) ) 213 $_wp_theme_features['post-thumbnails'] = array( array('goods') ); 214 215 elseif( true === $_wp_theme_features['post-thumbnails']) 216 return; 217 218 elseif( is_array($_wp_theme_features['post-thumbnails'][0]) ) 219 $_wp_theme_features['post-thumbnails'][0][] = 'goods'; 220 221 // add_theme_support( 'post-thumbnails' ); 211 222 } 212 223 add_action( 'after_setup_theme', 'gs_thumbnails_support', 11 ); -
goods-catalog/trunk/readme.txt
r1154409 r1157780 104 104 == Changelog == 105 105 106 = 0.9.3 = 107 108 * Thumbnails bug fix 109 106 110 = 0.9.2 = 107 111 … … 263 267 == Upgrade Notice == 264 268 269 = 0.9.3 = 270 271 Thumbnails bug fix 272 265 273 = 0.9.2 = 266 274
Note: See TracChangeset
for help on using the changeset viewer.