公告
财富商城
积分规则
提问
发文
2020-04-10 02:05发布
SAY GOODBYE
Hi everyone I have this configuration in my woocommerce
And in my product I have this
but when I show the price it return me "4.95" instead of "4,95"
I use this to get the price
$price = get_post_meta( get_the_ID(), '_regular_price', true);
Any idea!
Use the wc_price function to format the number.
wc_price
$price = get_post_meta( get_the_ID(), '_regular_price', true); $formatted_price = wc_price( $price );
Note: For versions < 2.1.0, use woocommerce_price.
woocommerce_price
最多设置5个标签!
Use the
wc_price
function to format the number.Note: For versions < 2.1.0, use
woocommerce_price
.