WC_Product::has_options()publicWC 3.0.0

Returns whether or not the product has additional options that need selecting before adding to cart.

Method of the class: WC_Product{}

Hooks from the method

Return

true|false.

Usage

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

Changelog

Since 3.0.0 Introduced.

WC_Product::has_options() code WC 8.7.0

public function has_options() {
	return apply_filters( 'woocommerce_product_has_options', false, $this );
}