WC_Shipping::__construct
Initialize shipping.
Method of the class: WC_Shipping{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Shipping = new WC_Shipping(); $WC_Shipping->__construct();
WC_Shipping::__construct() WC Shipping:: construct code WC 10.4.3
public function __construct() {
$this->enabled = wc_shipping_enabled();
if ( $this->enabled ) {
$this->init();
}
}