gpt4 book ai didi

php - 如何从 Woocommerce 的订单项中获取产品 sku

转载 作者:行者123 更新时间:2023-12-04 01:55:47 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to get WooCommerce order details

(5 个回答)



Get Order items and WC_Order_Item_Product in WooCommerce 3

(2 个回答)



Get sku from each orders Woocommerce

(1 个回答)


3年前关闭。




对于页面“woocommerce_thankyou”上的 Api,需要获取 sku。
我有:

$order = wc_get_order( $order_id ); 
foreach ($order->get_items() as $item_key => $item_values):
$product = new WC_Product($item_id);
$item_sku[] = $product->get_sku();
endforeach;

但不起作用。

最佳答案

我认为你在实际的模板页面上摆弄;-)
在 Wordpress 中我们主要使用 action hooks来完成这样的任务。

试试这个,把它放在(子)主题中 functions.php .

注意:仅适用于 WooCommerce 3+

add_action( 'woocommerce_thankyou', 'order_created_get_skus', 10 );

function order_created_get_skus($order_id){

$item_sku = array();
$order = wc_get_order( $order_id );

foreach ($order->get_items() as $item) {
$product = wc_get_product($item->get_product_id());
$item_sku[] = $product->get_sku();
}

// now do something with the sku array

}

问候, 比约恩

关于php - 如何从 Woocommerce 的订单项中获取产品 sku,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50779953/

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