WC_Product::set_downloadable( bool|string $downloadable )
Set if the product is downloadable.
Description Description
Parameters Parameters
- $downloadable
-
(Required) Whether product is downloadable or not.
Source Source
File: includes/abstracts/abstract-wc-product.php
public function set_downloadable( $downloadable ) { $this->set_prop( 'downloadable', wc_string_to_bool( $downloadable ) ); }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |