10

製品 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 を拡張します

どんな助けでも大歓迎です。

4

2 に答える 2

20
$order = new WC_Order($order_id);

foreach ($order->get_items() as $item)
{
    $product_description = get_post($item['product_id'])->post_content; // I used wordpress built-in functions to get the product object 
}
于 2013-11-14T06:46:32.597 に答える