对于仍然感兴趣的人来说,这就是我昨天下午找到的解决方案。使用此函数创建快捷码:
// Function to add shortcode to display tax rates
function woocommerce_template_display_tax() {
global $product;
$tax_rates = WC_Tax::get_rates( $product->get_tax_class() );
if (!empty($tax_rates)) {
$tax_rate = reset($tax_rates);
echo sprintf(_x(\'Price without %.2f %% tax\', \'Text for tax rate. %.2f =
tax rate\', \'wptheme.foundation\'), $tax_rate[\'rate\']);
}
}
add_shortcode(\'display_tax\', \'woocommerce_template_display_tax\');
使用快捷码[显示税]。它实际显示的是“价格不含xxx%的税。因此,您可以稍微修改上面的代码,以仅响应税额。初始代码可以在此处找到
https://stackoverflow.com/questions/44788306/woocommerce-output-product-tax-rate-wc-3-0