WC_Shipping_Zone::is_valid_location_type( string $type )

Is passed location type valid?


Description Description


Parameters Parameters

$type

(Required) Type to check.


Top ↑

Return Return

(boolean)


Top ↑

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 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.