wc_is_stock_amount_integer()WC 10.1.0

Check if the stock amount is an integer.

No Hooks.

Returns

true|false.

Usage

wc_is_stock_amount_integer();

Changelog

Since 10.1.0 Introduced.

wc_is_stock_amount_integer() code WC 10.4.3

function wc_is_stock_amount_integer() {
	return wc_stock_amount( 1 ) === 1;
}