WC_Abstract_Legacy_Product::adjust_price
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Adjust a products price dynamically.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->adjust_price( $price );
- $price(mixed) (required)
- .
Changelog
| Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::adjust_price() WC Abstract Legacy Product::adjust price code WC 10.8.1
public function adjust_price( $price ) {
wc_deprecated_function( 'WC_Product::adjust_price', '3.0', 'WC_Product::set_price / WC_Product::get_price' );
$this->data['price'] = $this->data['price'] + $price;
}