WC_Abstract_Legacy_Product::adjust_price()publicWC 1.0

Deprecated from version 3.0.0. It is no longer supported and can 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.

Return

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() code WC 8.7.0

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;
}