WC_Product::get_type()publicWC 3.0.0

Get internal type. Should return string and should be overridden by child classes.

The product_type property is deprecated but is used here for BW compatibility with child classes which may be defining product_type and not have a get_type method.

Method of the class: WC_Product{}

No Hooks.

Return

String.

Usage

$WC_Product = new WC_Product();
$WC_Product->get_type();

Changelog

Since 3.0.0 Introduced.

WC_Product::get_type() code WC 8.7.0

public function get_type() {
	return isset( $this->product_type ) ? $this->product_type : 'simple';
}