WC_Countries::get_states
Get the states for a country.
Метод класса: WC_Countries{}
Хуки из метода
Возвращает
false|Массив. of states
Использование
$WC_Countries = new WC_Countries(); $WC_Countries->get_states( $cc );
- $cc(строка)
- Country code.
По умолчанию: null
Код WC_Countries::get_states() WC Countries::get states WC 10.4.3
public function get_states( $cc = null ) {
if ( ! isset( $this->geo_cache['states'] ) ) {
/**
* Allows filtering of country states in WC.
*
* @since 1.5.3
*
* @param array $states
*/
$this->geo_cache['states'] = apply_filters( 'woocommerce_states', include WC()->plugin_path() . '/i18n/states.php' );
}
if ( ! is_null( $cc ) ) {
return isset( $this->geo_cache['states'][ $cc ] ) ? $this->geo_cache['states'][ $cc ] : false;
} else {
return $this->geo_cache['states'];
}
}