1

私はワードプレスでwoocommerceを使用しています..カートアイテム名とカートアイテムのコストを表示できません。さらに、ワードプレスページの合計..誰か助けてくれますか?

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 に答える