WooCommerce::__construct()publicWC 1.0

WooCommerce Constructor.

Method of the class: WooCommerce{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WooCommerce::__construct() code WC 8.7.0

public function __construct() {
	$this->define_constants();
	$this->define_tables();
	$this->includes();
	$this->init_hooks();
}