wc_get_price_decimal_separator
Return the decimal separator for prices.
Usage
add_filter( 'wc_get_price_decimal_separator', 'wp_kama_wc_get_price_decimal_separator_filter' );
/**
* Function for `wc_get_price_decimal_separator` filter-hook.
*
* @param $option
*
* @return
*/
function wp_kama_wc_get_price_decimal_separator_filter( $option ){
// filter...
return $option;
}
- $option
- -
Changelog
| Since 2.3 | Introduced. |
Where the hook is called
wc_get_price_decimal_separator
woocommerce/includes/wc-formatting-functions.php 556
$separator = apply_filters( 'wc_get_price_decimal_separator', get_option( 'woocommerce_price_decimal_sep' ) );