WC_Countries::get_countries() public WC 1.0
Get all countries.
{} Это метод класса: WC_Countries{}
Хуки из метода
Возвращает
Массив.
Использование
$WC_Countries = new WC_Countries(); $WC_Countries->get_countries();
Код WC_Countries::get_countries() WC Countries::get countries WC 5.0.0
public function get_countries() {
if ( empty( $this->countries ) ) {
$this->countries = apply_filters( 'woocommerce_countries', include WC()->plugin_path() . '/i18n/countries.php' );
if ( apply_filters( 'woocommerce_sort_countries', true ) ) {
wc_asort_by_locale( $this->countries );
}
}
return $this->countries;
}