WC_Product::get_download_limit()
Get download limit.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
int
.
Использование
$WC_Product = new WC_Product(); $WC_Product->get_download_limit( $context );
- $context(строка)
- What the value is for. Valid values are view and edit.
По умолчанию: 'view'
Список изменений
С версии 3.0.0 | Введена. |
Код WC_Product::get_download_limit() WC Product::get download limit WC 9.2.3
public function get_download_limit( $context = 'view' ) { return $this->get_prop( 'download_limit', $context ); }