我认为过滤器在模板中不起作用,因为您正在使用wc_price( wc_get_price_including_tax( $product ) )
.. 可能的解决方法:
function pr_price_suffix( $price, $product ) {
return wc_price( wc_get_price_including_tax( $product ) ). \' test\';
}
add_filter( \'woocommerce_get_price_html\', \'pr_price_suffix\', 10, 2 );
在您的单一产品中。php模板:
<?php echo $product->get_price_html(); ?>