WC_Product_Variable::has_options()
Returns whether or not the product has additional options that need selecting before adding to cart.
Method of the class: WC_Product_Variable{}
Hooks from the method
Return
true|false
.
Usage
$WC_Product_Variable = new WC_Product_Variable(); $WC_Product_Variable->has_options();
Changelog
Since 3.0.0 | Introduced. |
WC_Product_Variable::has_options() WC Product Variable::has options code WC 9.4.2
public function has_options() { return apply_filters( 'woocommerce_product_has_options', true, $this ); }