如果存在各种变体,并且您希望编辑每个变体的库存,则变体列表不是逻辑(在管理员中)。当你想编辑1个变种时,你必须搜索整个列表(250+)才能找到他。
我在这里找到了解决方案; Change alphabetical sorting of attributes / variations on product page in Woocommerce shop
但是当我编辑批量编辑价格并保存产品时,只会更新前41个。正是因为这条线;
'orderby' => 'menu_order',
这是我的代码;
$args = array(
'post_type'=>'product_variation',
'post_status' => array( 'private', 'publish' ),
'posts_per_page' => -1,
'meta_key' => 'attribute_pa_kleur', //rename with your attributes
'post_parent' => $post->ID,
'meta_query' => array(
array(
'key' => 'attribute_pa_kleur' //rename with your attributes
),
)
);
我该如何解决这个问题?谢谢!