WC_Order_Item_Shipping::get_total()publicWC 1.0

Get total cost.

Method of the class: WC_Order_Item_Shipping{}

No Hooks.

Return

String.

Usage

$WC_Order_Item_Shipping = new WC_Order_Item_Shipping();
$WC_Order_Item_Shipping->get_total( $context );
$context(string)
View or edit context.
Default: 'view'

WC_Order_Item_Shipping::get_total() code WC 8.7.0

public function get_total( $context = 'view' ) {
	return $this->get_prop( 'total', $context );
}