WC_Product::set_downloadable()publicWC 3.0.0

Set if the product is downloadable.

Метод класса: WC_Product{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Product = new WC_Product();
$WC_Product->set_downloadable( $downloadable );
$downloadable(true|false|строка) (обязательный)
Whether product is downloadable or not.

Список изменений

С версии 3.0.0 Введена.

Код WC_Product::set_downloadable() WC 8.7.0

public function set_downloadable( $downloadable ) {
	$this->set_prop( 'downloadable', wc_string_to_bool( $downloadable ) );
}