woocommerce_trim_zeros()WC 1.0

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

String.

Usage

woocommerce_trim_zeros( $price );
$price(required)
.

Changelog

Deprecated since 3.0

woocommerce_trim_zeros() code WC 10.8.1

function woocommerce_trim_zeros( $price ) {
	wc_deprecated_function( __FUNCTION__, '3.0', 'wc_trim_zeros' );
	return wc_trim_zeros( $price );
}