更改 WooCommerce 商店页面上的添加到购物车按钮文本?

Change add to cart button text on shop page in WooCommerce?

如何在 WooCommerce 商店页面上将添加到购物车按钮的文本更改为“+”?
这样所有添加到购物车的按钮都显示“+”而不是 "Add to cart"!

要更改商店页面的添加到购物车按钮文本,您必须使用 woocommerce_product_add_to_cart_text 过滤器。

代码如下:

add_filter('woocommerce_product_add_to_cart_text', 'wh_archive_custom_cart_button_text');   // 2.1 +

function wh_archive_custom_cart_button_text()
{
    return __('+', 'woocommerce');
}

代码进入您的活动子主题(或主题)的 functions.php 文件。或者在任何插件 php 文件中。
代码已经过测试并且可以工作。

官方文档:Change add to cart button text

希望对您有所帮助!