自定义WordPress WooCommerce类别和标签标题

时间:2014-11-23 12:03:50

标签: php wordpress woocommerce

我有一个基于WordPress的网站,安装了WooCommerce插件。

在单个产品页面上,有产品说明,产品图片以及项目所列的类别和标签。

如何更改“类别”和“标签”标题/文字以显示为其他内容?

例如,将“类别”更改为“状态”,将“标记”更改为“郊区”?


enter image description here

2 个答案:

答案 0 :(得分:2)

可以在/single-product/meta.php模板中更改此内容。您可以查看来源on GitHub

有关覆盖默认模板的详细信息,您需要阅读the WooCommerce docs on overriding template files

答案 1 :(得分:1)

快速重命名为woo:

add_filter('gettext',  'translate_text');
add_filter('ngettext',  'translate_text');
function translate_text($translated) {
    $translated = str_ireplace('Choose and option',  'Select',  $translated);
    return $translated;
}