製品 ID を使用して製品説明または製品オブジェクトを取得するにはどうすればよいですか。
$order = new WC_Order($order_id);
foreach ($order->get_items() as $item) {
$product_description = get_the_product_description($item['product_id']); // is there any method can I use to fetch the product description?
}
上記のコードはクラス WC_Payment_Gateway を拡張します
どんな助けでも大歓迎です。