WC_Shipping_Zone::location_is_postcode
Location type detection.
Method of the class: WC_Shipping_Zone{}
No Hooks.
Returns
true|false.
Usage
// private - for code of main (parent) class only $result = $this->location_is_postcode( $location );
- $location(object) (required)
- Location to check.
WC_Shipping_Zone::location_is_postcode() WC Shipping Zone::location is postcode code WC 10.3.5
private function location_is_postcode( $location ) {
return 'postcode' === $location->type;
}