WC_Product::get_download_limit
Get download limit.
Method of the class: WC_Product{}
No Hooks.
Returns
Int.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_download_limit( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default: 'view'
Changelog
| Since 3.0.0 | Introduced. |
WC_Product::get_download_limit() WC Product::get download limit code WC 10.3.6
public function get_download_limit( $context = 'view' ) {
return $this->get_prop( 'download_limit', $context );
}