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