WC_Countries::get_countries()
Get all countries.
Метод класса: WC_Countries{}
Хуки из метода
Возвращает
Массив
.
Использование
$WC_Countries = new WC_Countries(); $WC_Countries->get_countries();
Код WC_Countries::get_countries() WC Countries::get countries WC 9.8.2
public function get_countries() { if ( empty( $this->geo_cache['countries'] ) ) { /** * Allows filtering of the list of countries in WC. * * @since 1.5.3 * * @param array $countries */ $this->geo_cache['countries'] = apply_filters( 'woocommerce_countries', include WC()->plugin_path() . '/i18n/countries.php' ); if ( apply_filters( 'woocommerce_sort_countries', true ) ) { wc_asort_by_locale( $this->geo_cache['countries'] ); } } return $this->geo_cache['countries']; }