WC_Order_Item_Shipping::get_tax_class()publicWC 1.0

Get tax class.

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_tax_class( $context );
$context(string)
View or edit context.
Default: 'view'

WC_Order_Item_Shipping::get_tax_class() code WC 8.7.0

public function get_tax_class( $context = 'view' ) {
	return get_option( 'woocommerce_shipping_tax_class' );
}