WC_Shipping_Zone::is_valid_location_type( string $type )
Is passed location type valid?
Description Description
Parameters Parameters
- $type
-
(Required) Type to check.
Return Return
(boolean)
Source Source
File: includes/class-wc-shipping-zone.php
public function is_valid_location_type( $type ) { return in_array( $type, apply_filters( 'woocommerce_valid_location_types', array( 'postcode', 'state', 'country', 'continent' ) ), true ); }