php WooCommerce:将价格中的小数转换为上标。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce:将价格中的小数转换为上标。相关的知识,希望对你有一定的参考价值。

// Make price decimals superscript
add_filter( 'formatted_woocommerce_price', 'nullera_super_decimal', 10, 5 );
function nullera_super_decimal( $formatted_price, $price, $decimal_places, $decimal_separator, $thousand_separator ) {
	$unit = number_format( intval( $price ), 0, $decimal_separator, $thousand_separator );
	$decimal = sprintf( '%02d', ( $price - intval( $price ) ) * 100 );
	return $unit . '<sup>' . $decimal_separator. $decimal . '</sup>';
}

以上是关于php WooCommerce:将价格中的小数转换为上标。的主要内容,如果未能解决你的问题,请参考以下文章

php 删除十进制删除小数价格删除magento货币符号中的十进制价格编辑价格编辑货币编辑小数

在 Woocommerce 的 Paypal 插件中转换运费

php WooCommerce:显示具有相同变化价格的可变产品的价格

php WooCommerce禁用价格范围

php WooCommerce变化价格

需要根据woocommerce中产品的个别数量更改价格[重复]