WC_Product::has_options
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
Returns
true|false.
Usage
$WC_Product = new WC_Product(); $WC_Product->has_options();
Changelog
| Since 3.0.0 | Introduced. |
WC_Product::has_options() WC Product::has options code WC 10.7.0
public function has_options() {
return apply_filters( 'woocommerce_product_has_options', false, $this );
}