我有以下代码:
foreach ($loop->posts as $product) {
$currentPrice = get_post_meta($product->ID, '_regular_price', true);
update_post_meta( $product->ID, '_price', $currentPrice );
update_post_meta( $product->ID, '_regular_price', $currentPrice );
delete_metadata('post', $product->ID, '_sale_price');
if(in_array($i, $random_product)) {
$discount = rand(10,25) / 100;
$salePrice = $discount * $currentPrice;
$salePrice = ceil($currentPrice - $salePrice);
if($salePrice == $currentPrice) {
$salePrice = $currentPrice - 1;
}
if($currentPrice != '' || $currentPrice == '0') {
update_post_meta($product->ID, '_sale_price', $salePrice);
update_post_meta( $product->ID, '_price', $salePrice );
echo "Sale Item $i / Product ID $product->ID / Current Price $currentPrice / Sale Price $salePrice \n";
}
}
$i++;
}
基本上,我想做的是将所有商品带入商店,然后将其循环播放,如果它在我的阵列中(这只是随机生成的产品ID阵列),则应将其设置为销售状态,并确保其他所有产品均未发售。
但是,当我这样做时...无论出于何种原因,所有可变产品都会显示为不可用,直到我进入其产品页面,然后点击“变体->设置状态->有库存”
我想我会很聪明,将其更改为管理库存,有999种产品可用,但仍然会产生相同的问题。
问题是,我不会仅以此价格更改库存...但是,正是我手动运行的此代码,这触发了问题。
有什么想法吗?
答案 0 :(得分:0)
您应该尝试使用Woocommerce 3以来新引入的CRUD methods,而不是使用WordPress帖子元功能。
我也对您的代码进行了一些更改,但是由于您的问题代码不完整,因此无法测试。尝试如下操作:
foreach ( $loop->posts as $post ) {
// Get an instance of the product object
$product = wc_get_product($post->ID);
$changes = false;
// Get product regular and sale prices
$regular_price = $product->get_regular_price();
$sale_price = $product->get_sale_price();
if( ! empty($sale_price) || $product->is_on_sale() ) {
// Empty product sale price
$product->set_sale_price('');
// Set product active price back to regular price
$product->set_price($regular_price);
$changes = true;
}
if( in_array( $i, $random_product ) ) {
// Calculate a ramdom sale price for the current ramdom product
$discount_rate = (100 - rand(10, 25)) / 100;
$sale_price = ceil($discount_rate * $regular_price);
// Set product active price and sale price
$product->set_sale_price($sale_price);
$product->set_price($sale_price);
printf( __("Sale Item %s / Product ID %s / Current Price %s / Sale Price %s \n"),
$i, $post->ID, wc_price($regular_price), wc_price($sale_price) );
$changes = true;
}
$i++;
if( $changes ){
// Save the product data
$product->save();
}
}
未经测试