更新Woocommerce中变量产品的所有变化价格

Kat*_*tun 5 php wordpress product variations woocommerce

我需要获取所有变体ID并在循环中更新价格.简单的查询和循环看起来像:

$params = array(
  ‘posts_per_page’ => -1,
  ‘post_type’ => ‘product_variation’,
  ‘post_parent’ => $product->get_id() // tried $post-ID
);
$variations = get_posts( $params );
foreach ( $variations as $variation ) {
  $variation_ID = $variation->ID; // tried $post-ID, $product->get_id()
  $regular_price=34;
  update_post_meta( $variation_ID, ‘_regular_price’, (float)$regular_price );
  update_post_meta( $variation_ID, ‘_price’, (float)$regular_price );
}
Run Code Online (Sandbox Code Playgroud)

我认为不这样做:

(‘post_parent’ => $product->get_id()) 
Run Code Online (Sandbox Code Playgroud)

或这个:

($variation_ID = $variation->ID;). 
Run Code Online (Sandbox Code Playgroud)

Loi*_*tec 8

首先在您的代码中应替换为'.如果使用,也$post-ID应该替换为$post->ID

根据您使用此代码的位置方式,您应global $post;首先尝试包含 以便能够使用该WP_Post对象$post.

然后,您可以尝试使用此代码的自定义版本:

global $post;

$regular_price = 13;

// Only for product post type
if( $post->post_type == 'product' )
    $product = wc_get_product( $post->ID ); // An instance of the WC_Product object

// Only for variable products
if( $product->is_type('variable') ){

    foreach( $product->get_available_variations() as $variation_values ){
        $variation_id = $variation_values['variation_id']; // variation id
        // Updating active price and regular price
        update_post_meta( $variation_id, '_regular_price', $regular_price );
        update_post_meta( $variation_id, '_price', $regular_price );
        wc_delete_product_transients( $variation_id ); // Clear/refresh the variation cache
    }
    // Clear/refresh the variable product cache
    wc_delete_product_transients( $post->ID );
}
Run Code Online (Sandbox Code Playgroud)

此代码在WooCommerce版本3+上进行测试并且有效