WC_Product::is_downloadable()
Checks if a product is downloadable.
Method of the class: WC_Product{}
Hooks from the method
Return
true|false
.
Usage
$WC_Product = new WC_Product(); $WC_Product->is_downloadable();
WC_Product::is_downloadable() WC Product::is downloadable code WC 9.2.3
public function is_downloadable() { return apply_filters( 'woocommerce_is_downloadable', true === $this->get_downloadable(), $this ); }