【发布时间】:2018-11-28 21:00:03
【问题描述】:
我想在 Woocommerce 的帐户视图订单页面上添加图像。我可以获取图像但尺寸太大,我不知道我需要在哪里添加此代码:
<?php
// Get a list of all items that belong to the order
$products = $order->get_items();
// Loop through the items and get the product image
foreach( $products as $product ) {
$product_obj = new WC_Product( $product["product_id"] );
echo $product_obj->get_image();
}
?>
任何帮助将不胜感激
这是查看订单页面上的位置,我想在其中添加产品图片:
【问题讨论】:
标签: wordpress image woocommerce hook-woocommerce orders