WC_Abstract_Order::get_cart_subtotal_for_order
Helper function. If you add all items in this order in cart again, this would be the cart subtotal (assuming all other settings are same).
Метод класса: WC_Abstract_Order{}
Хуков нет.
Возвращает
float. Cart subtotal.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_cart_subtotal_for_order();
Код WC_Abstract_Order::get_cart_subtotal_for_order() WC Abstract Order::get cart subtotal for order WC 10.4.3
protected function get_cart_subtotal_for_order() {
return wc_remove_number_precision(
$this->get_rounded_items_total(
$this->get_values_for_total( 'subtotal' )
)
);
}