只是想知道如何在价格中添加后缀,比如:
10-100美元
在“商店”页面上显示以下内容:
10美元(a)~100美元(b)
我唯一找到的就是
10美元至100美元(a)-(b)
add_filter(\'woocommerce_get_price_html\',\'pd_add_price_per_unit_meta_to_price\');
function pd_add_price_per_unit_meta_to_price( $price ) {
$price .= \' aasdf \' . get_post_meta(get_the_ID(), \'wc_price_per_unit_key\', true);
return $price;
}
但它在每个价格变化上都显示了这一点,我不希望这种情况发生。