woocommerce_format_sale_price

woocommerce_format_sale_price

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_format_sale_price') is found 1 times:

  • /includes/wc-formatting-functions.php line 1294
     * @return string
     */
    function wc_format_sale_price( $regular_price, $sale_price ) {
    	$price = '<del aria-hidden="true">' . ( is_numeric( $regular_price ) ? wc_price( $regular_price ) : $regular_price ) . '</del> <ins>' . ( is_numeric( $sale_price ) ? wc_price( $sale_price ) : $sale_price ) . '</ins>';
    	return apply_filters( 'woocommerce_format_sale_price', $price, $regular_price, $sale_price );
    }
    
    /**
     * Format a price range for display.
     *
     * @param  string $from Price from.