WC_Order::get_order_item_totals() public WC 1.0
Get totals for display on pages and in emails.
{} It's a method of the class: WC_Order{}
Hooks from the method
Return
Array.
Usage
$WC_Order = new WC_Order(); $WC_Order->get_order_item_totals( $tax_display );
- $tax_display(string)
- Tax to display.
Code of WC_Order::get_order_item_totals() WC Order::get order item totals WC 5.0.0
public function get_order_item_totals( $tax_display = '' ) {
$tax_display = $tax_display ? $tax_display : get_option( 'woocommerce_tax_display_cart' );
$total_rows = array();
$this->add_order_item_totals_subtotal_row( $total_rows, $tax_display );
$this->add_order_item_totals_discount_row( $total_rows, $tax_display );
$this->add_order_item_totals_shipping_row( $total_rows, $tax_display );
$this->add_order_item_totals_fee_rows( $total_rows, $tax_display );
$this->add_order_item_totals_tax_rows( $total_rows, $tax_display );
$this->add_order_item_totals_payment_method_row( $total_rows, $tax_display );
$this->add_order_item_totals_refund_rows( $total_rows, $tax_display );
$this->add_order_item_totals_total_row( $total_rows, $tax_display );
return apply_filters( 'woocommerce_get_order_item_totals', $total_rows, $this, $tax_display );
}