wc_get_price_decimal_separator()
Return the decimal separator for prices.
Хуки из функции
Возвращает
Строку.
Использование
wc_get_price_decimal_separator();
Список изменений
| С версии 2.3 | Введена. |
Код wc_get_price_decimal_separator() wc get price decimal separator WC 10.9.1
function wc_get_price_decimal_separator() {
$separator = apply_filters( 'wc_get_price_decimal_separator', get_option( 'woocommerce_price_decimal_sep' ) );
return $separator ? stripslashes( $separator ) : '.';
}