我需要获取所有变体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 );
}
我认为不这样做:
(‘post_parent’ => $product->get_id())
或者这个:
($variation_ID = $variation->ID;).
答案 0 :(得分: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 );
}
此代码在WooCommerce版本3+上进行测试并正常工作