我在functions.php
中使用此功能将WooCommerce中允许的变量数量从默认值30增加到50。
但是我收到一个错误说:
警告:array_merge():参数#2不是数组 第63行的/.../wp-includes/load.php。
它仍然可以保存变体和产品,但我认为这个功能有些东西缺失了吗?
任何人都可以帮助识别吗?
function woo_custom_ajax_variation_threshold( $qty, $product ) {
return 50;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'woo_custom_ajax_variation_threshold', 10, 2 );
感谢。 :)