WC_Countries::get_countries
Get all countries.
Method of the class: WC_Countries{}
Hooks from the method
Returns
Array.
Usage
$WC_Countries = new WC_Countries(); $WC_Countries->get_countries();
WC_Countries::get_countries() WC Countries::get countries code WC 10.6.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'];
}