WC_Countries::get_continents()publicWC 1.0

Get all continents.

Метод класса: WC_Countries{}

Хуки из метода

Возвращает

Массив.

Использование

$WC_Countries = new WC_Countries();
$WC_Countries->get_continents();

Код WC_Countries::get_continents() WC 8.7.0

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'];
}