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

问题描述 投票:1回答:2

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

  WC_Product_Variable Object ( [children:protected] => Array ( [0] => 344 [1] => 345 ) [visible_children:protected] => Array ( [0] => 344 [1] => 345 ) 
php wordpress woocommerce product children
2个回答
0
投票

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

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

WC_Product_Variable::get_children(0);
© www.soinside.com 2019 - 2024. All rights reserved.