WC_Shipping::__construct()publicWC 1.0

Initialize shipping.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

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

Код WC_Shipping::__construct() WC 8.7.0

public function __construct() {
	$this->enabled = wc_shipping_enabled();

	if ( $this->enabled ) {
		$this->init();
	}
}