但是当我显示它的价格时,它会让我回复" 4.95"而不是" 4,95"
我用它来得到价格
$price = get_post_meta( get_the_ID(), '_regular_price', true);
任何想法!
答案 0 :(得分:4)
使用wc_price
功能格式化数字。
$price = get_post_meta( get_the_ID(), '_regular_price', true);
$formatted_price = wc_price( $price );
注意:对于版本< 2.1.0,使用woocommerce_price
。