WC_Product::get_date_on_sale_from
Get date on sale from.
Method of the class: WC_Product{}
No Hooks.
Returns
WC_DateTime|NULL. object if the date is set or null if there is no date.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_date_on_sale_from( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default:'view'
Changelog
| Since 3.0.0 | Introduced. |
WC_Product::get_date_on_sale_from() WC Product::get date on sale from code WC 10.6.2
public function get_date_on_sale_from( $context = 'view' ) {
return $this->get_prop( 'date_on_sale_from', $context );
}