woocommerce_trim_zeros()
Deprecated since 3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
No Hooks.
Returns
null
. Nothing (null).
Usage
woocommerce_trim_zeros( $price );
- $price(required)
- .
Changelog
Deprecated since | 3.0 |
woocommerce_trim_zeros() woocommerce trim zeros code WC 9.9.5
function woocommerce_trim_zeros( $price ) { wc_deprecated_function( __FUNCTION__, '3.0', 'wc_trim_zeros' ); return wc_trim_zeros( $price ); }