WC_Product::is_sold_individually()publicWC 1.0

Check if a product is sold individually (no quantities).

Method of the class: WC_Product{}

Hooks from the method

Return

true|false.

Usage

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

WC_Product::is_sold_individually() code WC 8.6.1

public function is_sold_individually() {
	return apply_filters( 'woocommerce_is_sold_individually', true === $this->get_sold_individually(), $this );
}