WC_Abstract_Order::get_taxable_location()
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() WC Abstract Order::get taxable location code WC 9.7.1
public function get_taxable_location( $args = array() ) { return $this->get_tax_location( $args ); }