Code-Snippets-Functions/Execute a function on a child site/WooCommerce/show-trailing-zeros-just-in-wp-admin.txt

10 lines
325 B
Text

function filter_woocommerce_price_trim_zeros( $trim ) {
// True if inside WordPress administration interface, false otherwise.
// if NOT true = false
if ( ! is_admin() ) {
$trim = true;
}
return $trim;
}
add_filter( 'woocommerce_price_trim_zeros', 'filter_woocommerce_price_trim_zeros', 10, 1 );