WC_Product::is_on_sale
Returns whether or not the product is on sale.
Method of the class: WC_Product{}
Hooks from the method
Returns
true|false.
Usage
$WC_Product = new WC_Product(); $WC_Product->is_on_sale( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default:'view'
WC_Product::is_on_sale() WC Product::is on sale code WC 10.7.0
public function is_on_sale( $context = 'view' ) {
if ( '' !== (string) $this->get_sale_price( $context ) && $this->get_regular_price( $context ) > $this->get_sale_price( $context ) ) {
$on_sale = true;
if ( $this->get_date_on_sale_from( $context ) && $this->get_date_on_sale_from( $context )->getTimestamp() > time() ) {
$on_sale = false;
}
if ( $this->get_date_on_sale_to( $context ) && $this->get_date_on_sale_to( $context )->getTimestamp() < time() ) {
$on_sale = false;
}
} else {
$on_sale = false;
}
return 'view' === $context ? apply_filters( 'woocommerce_product_is_on_sale', $on_sale, $this ) : $on_sale;
}