WC_Abstract_Order::get_order_item_totals()publicWC 1.0

Get totals for display on pages and in emails.

Method of the class: WC_Abstract_Order{}

Hooks from the method

Return

Array.

Usage

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->get_order_item_totals( $tax_display );
$tax_display(mixed)
Excl or incl tax display mode.
Default: ''

WC_Abstract_Order::get_order_item_totals() code WC 8.7.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_total_row( $total_rows, $tax_display );

	return apply_filters( 'woocommerce_get_order_item_totals', $total_rows, $this, $tax_display );
}