How to round up the price in wordpress to the nearest value?

后端 未结 1 1238
情深已故
情深已故 2021-01-21 09:46

I am using following function to round up the price in wordpress..

add_filter( \'woocommerce_get_price_excluding_tax\', \'round_price_product\', 10, 1 );
add_fil         


        
1条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-21 10:09

    You can achieve the same by simply using the php round() function as like this :

    function round_price_product( $price ){
        // Return rounded price
        return round( $price );
    }
    

    Hope it works for you.

    0 讨论(0)
提交回复
热议问题