//商品價格後面新增文字 EX:NT$100元起
function cw_change_product_price_display( $price ) {
$price .= '起';
return $price;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );