Plugin Directory

Changeset 3400168


Ignore:
Timestamp:
11/21/2025 04:41:01 AM (3 weeks ago)
Author:
naibabiji
Message:

update 1.0.13

Location:
naibabiji-b2b-product-showcase
Files:
38 added
5 edited

Legend:

Unmodified
Added
Removed
  • naibabiji-b2b-product-showcase/readme-zh_CN.txt

    r3400152 r3400168  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    103103= 为什么侧边栏中的产品样式不生效? =
    104104
    105 v1.0.12版本已修复此问题。如果仍遇到样式问题,请尝试:
     105v1.0.13版本已修复此问题。如果仍遇到样式问题,请尝试:
    106106
    1071071. **清除缓存** - 如果使用缓存插件,请清除所有缓存
     
    113113
    114114== 更新日志 ==
     115
     116= 1.0.13 =
     117* 修复侧边栏小工具处理中的foreach()警告错误
     118* 添加widget_ids类型检查,防止类型不匹配错误
     119* 增强WordPress侧边栏小工具配置的数据验证
     120* 提升插件稳定性与错误处理能力
    115121
    116122= 1.0.12 =
  • naibabiji-b2b-product-showcase/readme.txt

    r3400152 r3400168  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    103103= Why don't product styles work in the sidebar? =
    104104
    105 This issue has been fixed in v1.0.12. If you still encounter style problems, please try:
     105This issue has been fixed in v1.0.13. If you still encounter style problems, please try:
    106106
    1071071. **Clear Cache** - If using a cache plugin, clear all caches
     
    113113
    114114== Changelog ==
     115
     116= 1.0.13 =
     117* Fixed foreach() warning error in sidebar widget processing
     118* Added type checking for widget_ids to prevent type mismatch errors
     119* Improved data validation for WordPress sidebar widgets configuration
     120* Enhanced plugin stability and error handling
    115121
    116122= 1.0.12 =
  • naibabiji-b2b-product-showcase/trunk/naibabiji-b2b-product-showcase.php

    r3400152 r3400168  
    44 * Plugin URI: https://blog.naibabiji.com
    55 * Description: Lightweight B2B product showcase plugin designed for corporate websites, without shopping cart functionality, focusing on product display and inquiry.
    6  * Version: 1.0.12
     6 * Version: 1.0.13
    77 * Author: Naibabiji
    88 * Text Domain: naibabiji-b2b-product-showcase
     
    2525 * 定义插件常量
    2626 */
    27 define( 'NAIBABIJI_B2B_PRODUCT_SHOWCASE_VERSION', '1.0.12' );
     27define( 'NAIBABIJI_B2B_PRODUCT_SHOWCASE_VERSION', '1.0.13' );
    2828define( 'NAIBABIJI_B2B_PRODUCT_SHOWCASE_AUTHOR', 'Naibabiji' );
    2929define( 'NAIBABIJI_B2B_PRODUCT_SHOWCASE_URI', 'https://blog.naibabiji.com' );
     
    332332            }
    333333
     334            // 确保 $widget_ids 是数组类型
     335            if ( ! is_array( $widget_ids ) ) {
     336                continue;
     337            }
     338
    334339            // 遍历该侧边栏中的每个小工具
    335340            foreach ( $widget_ids as $widget_id ) {
  • naibabiji-b2b-product-showcase/trunk/readme-zh_CN.txt

    r3400152 r3400168  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    103103= 为什么侧边栏中的产品样式不生效? =
    104104
    105 v1.0.12版本已修复此问题。如果仍遇到样式问题,请尝试:
     105v1.0.13版本已修复此问题。如果仍遇到样式问题,请尝试:
    106106
    1071071. **清除缓存** - 如果使用缓存插件,请清除所有缓存
     
    113113
    114114== 更新日志 ==
     115
     116= 1.0.13 =
     117* 修复侧边栏小工具处理中的foreach()警告错误
     118* 添加widget_ids类型检查,防止类型不匹配错误
     119* 增强WordPress侧边栏小工具配置的数据验证
     120* 提升插件稳定性与错误处理能力
    115121
    116122= 1.0.12 =
  • naibabiji-b2b-product-showcase/trunk/readme.txt

    r3400152 r3400168  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    103103= Why don't product styles work in the sidebar? =
    104104
    105 This issue has been fixed in v1.0.12. If you still encounter style problems, please try:
     105This issue has been fixed in v1.0.13. If you still encounter style problems, please try:
    106106
    1071071. **Clear Cache** - If using a cache plugin, clear all caches
     
    113113
    114114== Changelog ==
     115
     116= 1.0.13 =
     117* Fixed foreach() warning error in sidebar widget processing
     118* Added type checking for widget_ids to prevent type mismatch errors
     119* Improved data validation for WordPress sidebar widgets configuration
     120* Enhanced plugin stability and error handling
    115121
    116122= 1.0.12 =
Note: See TracChangeset for help on using the changeset viewer.