我有一些产品需要将定价显示到小数点后8位,例如,每单位价格为0.00000214。
我尝试添加一个过滤器,但它只是显示值0.00000000
这是我所拥有的:
function filter_woocommerce_cart_item_price( $price, $cart_item, $cart_item_key )
{
$formattedNum = number_format((float) $price, 8);
return $formattedNum;
};
add_filter( 'woocommerce_cart_item_price', 'filter_woocommerce_cart_item_price', 10, 3 );
谢谢
米琪卡哇伊