WC_Product::is_downloadable()
Checks if a product is downloadable.
Метод класса: WC_Product{}
Хуки из метода
Возвращает
true|false
.
Использование
$WC_Product = new WC_Product(); $WC_Product->is_downloadable();
Код WC_Product::is_downloadable() WC Product::is downloadable WC 9.8.1
public function is_downloadable() { return apply_filters( 'woocommerce_is_downloadable', true === $this->get_downloadable(), $this ); }