gpt4 book ai didi

php - WooCommerce - 通过 product_id 获取产品描述

转载 作者:可可西里 更新时间:2023-11-01 13:34:23 30 4
gpt4 key购买 nike

如何使用产品 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 类

如有任何帮助,我们将不胜感激。

最佳答案

$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
}

关于php - WooCommerce - 通过 product_id 获取产品描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19763915/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com