2016-12-21 37 views

回答

0

藉助以下hook的價格,html可以根據您的預期進行更改。

下面是代碼:

add_filter('woocommerce_price_html', 'price_custom_class', 10, 2); 

function price_custom_class($price, $product){ 
// your code goes here 
return $price; 
}