WC_Product::get_sale_price( string $context = 'view' )
Returns the product’s sale price.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(string) price
Source Source
File: includes/abstracts/abstract-wc-product.php
286 287 288 | public function get_sale_price( $context = 'view' ) { return $this ->get_prop( 'sale_price' , $context ); } |