WC_Abstract_Order::get_taxable_location()publicWC 7.6.0

Public wrapper for exposing get_tax_location() method, enabling 3rd parties to get the tax location for an order.

Method of the class: WC_Abstract_Order{}

No Hooks.

Return

Array.

Usage

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->get_taxable_location( $args );
$args(array)
array Override the location.
Default: array()

Changelog

Since 7.6.0 Introduced.

WC_Abstract_Order::get_taxable_location() code WC 9.7.1

public function get_taxable_location( $args = array() ) {
	return $this->get_tax_location( $args );
}