日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

php怎么获得产品id,php – 如何获取Woocommerce产品中的Variation ID

發(fā)布時間:2025/3/15 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php怎么获得产品id,php – 如何获取Woocommerce产品中的Variation ID 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

我正在嘗試插入一個插件,我正在編寫產(chǎn)品的變體ID.這是我寫的:

class mass {

public function __construct()

{

add_action('woocommerce_product_after_variable_attributes',array($this,'thfo_mass'));

}

public function thfo_mass()

{

$id = WC_Product_Variation::get_variation_id();

//$lenght = get_post_meta($id,'_length');

//$dimensions = wc_get_dimension(24750, 'cm');

var_dump($id);

}

我只收到一個錯誤:

Deprecated: Non-static method WC_Product_Variation::get_variation_id() should not be called statically, assuming $this from incompatible context in path/to/plugins/thfo-raw-material-for-woocommerce/class/mass.php on line 19

Notice: Undefined property: mass::$variation_id in path/to/wp-content/plugins/woocommerce/includes/class-wc-product-variation.php on line 257

int(0)

解決方法:

試試這個.

$product_obj = new WC_Product_Factory();

$product = $product_obj->get_product($product);

if ($product->product_type == 'variable'):

$children = $product->get_children( $args = '', $output = OBJECT );

foreach ($children as $key=>$value) {

$product_variatons = new WC_Product_Variation($value);

if ( $product_variatons->exists() && $product_variatons->variation_is_visible() ) {

$variations[$value] = $product_variatons->get_variation_attributes();

}

}

endif;

標(biāo)簽:wordpress,php,woocommerce,variation

來源: https://codeday.me/bug/20190516/1116801.html

創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎勵來咯,堅持創(chuàng)作打卡瓜分現(xiàn)金大獎

總結(jié)

以上是生活随笔為你收集整理的php怎么获得产品id,php – 如何获取Woocommerce产品中的Variation ID的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。