WC_Shipping::get_shipping_methods()publicWC 1.0

Returns all registered shipping methods for usage.

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

Хуков нет.

Возвращает

WC_Shipping_Method[].

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

$WC_Shipping = new WC_Shipping();
$WC_Shipping->get_shipping_methods();

Код WC_Shipping::get_shipping_methods() WC 8.7.0

public function get_shipping_methods() {
	if ( is_null( $this->shipping_methods ) ) {
		$this->load_shipping_methods();
	}
	return $this->shipping_methods;
}