WC_Product::get_min_purchase_quantity()publicWC 3.0.0

Get min quantity which can be purchased at once.

Method of the class: WC_Product{}

No Hooks.

Return

Int.

Usage

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

Changelog

Since 3.0.0 Introduced.

WC_Product::get_min_purchase_quantity() code WC 8.7.0

public function get_min_purchase_quantity() {
	return 1;
}