2016-12-21 35 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; 
}