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