WC_Product::get_sold_individually( string $context = 'view' )
Return if should be sold individually.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(boolean)
Source Source
File: includes/abstracts/abstract-wc-product.php
public function get_sold_individually( $context = 'view' ) {
return $this->get_prop( 'sold_individually', $context );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |