WC_Product::set_date_on_sale_to()publicWC 3.0.0

Set date on sale to.

Method of the class: WC_Product{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Product = new WC_Product();
$WC_Product->set_date_on_sale_to( $date );
$date(string|int|null)
UTC timestamp, or ISO 8601 DateTime. If the DateTime string has no timezone or offset, WordPress site timezone will be assumed. Null if their is no date.
Default: null

Changelog

Since 3.0.0 Introduced.

WC_Product::set_date_on_sale_to() code WC 8.7.0

public function set_date_on_sale_to( $date = null ) {
	$this->set_date_prop( 'date_on_sale_to', $date );
}