我想获取父组产品的子产品ID,该怎么做,
早期的woocommerce将wp_option
表中的子数组保存为_transient_wc_product_children_ids_8
的关键,但最近的更新改变了它保存到数据库的方式,PLZ帮助我,如何从父产品中获取子产品分组产品。
答案 0 :(得分:3)
使用get_children()
课程中的WC_Product_Grouped
方法。
$product_id = 8; // ID of parent product
$product = get_product( $product_id );
$children = $product->get_children();
它应返回一组产品ID。
答案 1 :(得分:2)