WC_Order_Item_Shipping::get_total
Get total cost.
Метод класса: WC_Order_Item_Shipping{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Order_Item_Shipping = new WC_Order_Item_Shipping(); $WC_Order_Item_Shipping->get_total( $context );
- $context(строка)
- View or edit context.
По умолчанию:'view'
Код WC_Order_Item_Shipping::get_total() WC Order Item Shipping::get total WC 10.7.0
public function get_total( $context = 'view' ) {
return $this->get_prop( 'total', $context );
}