WC_Abstract_Order::get_shipping_tax()publicWC 1.0

Get shipping_tax.

Метод класса: WC_Abstract_Order{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->get_shipping_tax( $context );
$context(строка)
View or edit context.
По умолчанию: 'view'

Код WC_Abstract_Order::get_shipping_tax() WC 8.7.0

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