WC_Product::get_date_on_sale_from( string $context = 'view' )
Get date on sale from.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(WC_DateTime|NULL) object if the date is set or null if there is no date.
Source Source
File: includes/abstracts/abstract-wc-product.php
297 298 299 | public function get_date_on_sale_from( $context = 'view' ) { return $this ->get_prop( 'date_on_sale_from' , $context ); } |
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |