从 Woocommerce 3 中的可变产品获取变体 ID
Get variations IDs from a variable product in Woocommerce 3
需要从键为[0]的数组中获取值,但数组在对象中。我怎样才能把它放在一个变量中?
WC_Product_Variable Object ( [children:protected] => Array ( [0] => 344 [1] => 345 ) [visible_children:protected] => Array ( [0] => 344 [1] => 345 )
您无权访问此对象,因为它受保护。
对于您的情况,请尝试调用方法 get_children()
。
WC_Product_Variable::get_children(0);
要获取可变产品的子变体 ID,请使用 WC_product
get_children()
method (没有 have/allow 任何参数):
// (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];
已测试并有效。
需要从键为[0]的数组中获取值,但数组在对象中。我怎样才能把它放在一个变量中?
WC_Product_Variable Object ( [children:protected] => Array ( [0] => 344 [1] => 345 ) [visible_children:protected] => Array ( [0] => 344 [1] => 345 )
您无权访问此对象,因为它受保护。
对于您的情况,请尝试调用方法 get_children()
。
WC_Product_Variable::get_children(0);
要获取可变产品的子变体 ID,请使用 WC_product
get_children()
method (没有 have/allow 任何参数):
// (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];
已测试并有效。