从Woocommerce 3中的变量产品中获取变体ID

时间:2018-04-22 12:02:42

标签: php wordpress woocommerce product children

必须使用键[0]从数组中获取值,但数组在对象中。我怎样才能把它放在变量中?

  WC_Product_Variable Object ( [children:protected] => Array ( [0] => 344 [1] => 345 ) [visible_children:protected] => Array ( [0] => 344 [1] => 345 ) 

2 个答案:

答案 0 :(得分:4)

要获取变量产品的子级变体ID,请使用WC_product get_children() method (没有/允许任何参数)

// (if needed) Get an instance of the WC_product object (from a dynamic product ID)
$product = wc_get_product($product_id);

// Get children product variation IDs in an array
$children_ids = $product->get_children();

// Get the first ID value
$children_id = reset($children_ids); 
// or 
$children_id = $children_ids[0];

经过测试和工作。

答案 1 :(得分:0)

您无法访问此对象,因为它受到保护。

在您的情况下,尝试调用方法get_children()

WC_Product_Variable::get_children(0);