$product
から取得する方法は$subscription
からですか?WooCommerceサブスクリプション - 特定のサブスクリプションの製品を取得
this postのおかげで、私は$subscription
から私は$order
を得ることができることを知っている:
$order = $subscription->order;
も可能で、このですか?
$product = $subscription->product;
または:あなたはすでに$サブスクリプションオブジェクトを持っている場合
$subscription = new WC_Subscription($the_id);
:あなたは、 "サブスクリプションID" を持っている場合
$product = $order->product;