答案 0 :(得分:0)
如果您拥有$order
对象,则可以通过以下方式获取产品标题:
<?php
// Loop through order items
foreach($order->get_items() as $items){
$product = $items->get_product(); // The product object
$product_name = $product->get_name(); // The product Name
$quantity = $items->get_quantity(); // The product Quantity
$line_total = $items->get_total(); // The line item total
// Display the product name
echo '<p>'.$product_name.'</p>';
// Display the product quantity
echo '<p>'.$quantity.'</p>';
// Display the product name
echo '<p>'.$line_total.'</p>';
// Get the raw output to check
echo '<pre>'; print_r(echo $items->get_data() ); '</pre>';
}
?>
请记住,订单可以包含多个商品(产品名称不同)。
相关trhread:Get Order items and WC_Order_Item_Product in Woocommerce 3