wc_get_price_decimal_separator()WC 2.3

Return the decimal separator for prices.

Hooks from the function

Return

String.

Usage

wc_get_price_decimal_separator();

Changelog

Since 2.3 Introduced.

wc_get_price_decimal_separator() code WC 8.7.0

function wc_get_price_decimal_separator() {
	$separator = apply_filters( 'wc_get_price_decimal_separator', get_option( 'woocommerce_price_decimal_sep' ) );
	return $separator ? stripslashes( $separator ) : '.';
}