WC_Product::is_downloadable()publicWC 1.0

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() code WC 8.7.0

public function is_downloadable() {
	return apply_filters( 'woocommerce_is_downloadable', true === $this->get_downloadable(), $this );
}