WC_Product::managing_stock()publicWC 1.0

Returns whether or not the product is stock managed.

Method of the class: WC_Product{}

No Hooks.

Return

true|false.

Usage

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

WC_Product::managing_stock() code WC 8.7.0

public function managing_stock() {
	if ( 'yes' === get_option( 'woocommerce_manage_stock' ) ) {
		return $this->get_manage_stock();
	}
	return false;
}