价格woocommerce中的小数分隔符

时间:2016-06-14 15:22:55

标签: wordpress woocommerce

大家好我在我的woocommerce enter image description here

中有这个配置

在我的产品中,我有enter image description here

但是当我显示它的价格时,它会让我回复" 4.95"而不是" 4,95"

我用它来得到价格

$price = get_post_meta( get_the_ID(), '_regular_price', true);

任何想法!

1 个答案:

答案 0 :(得分:4)

使用wc_price功能格式化数字。

$price = get_post_meta( get_the_ID(), '_regular_price', true);
$formatted_price = wc_price( $price );

注意:对于版本< 2.1.0,使用woocommerce_price