1

我正在 wordpress 中使用 woocommerce。我无法让它显示购物车项目名称和购物车项目的成本。加上wordpress页面上的总数..有人可以帮助我吗?

woocommerce 的钩子在这里:http ://docs.woothemes.com/document/hooks/

我尝试过的代码是:

<?php

/*
Display number of items in cart and total
*/

global $woocommerce;

echo "Items in cart: ".sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);
echo "<br />";
echo "Total: ".$woocommerce->cart->get_cart_total();

?>
4

1 回答 1

2

尝试这个:

global $woocommerce;
$cart = $woocommerce->cart->cart_contents;
foreach($cart as $item){
   $name = $item['data']->parent->post->post_title;
   $price = $item['line_total'] / $item['quantity'];
}
于 2015-09-25T14:23:38.217 回答