在单一产品页面下的wordpress woocommerce中,我想更改默认标签标题:
更改"说明"功能和 更改"其他信息"到"规格"
我应该在哪个PHP文件下进行这些更改,以使其生效?
答案 0 :(得分:1)
以下是重命名标签的方法(只需添加到主题functions.php
文件中):
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'Features' ); // Rename the description tab
$tabs['additional_information']['title'] = __( 'Specifications' ); // Rename the additional information tab
return $tabs;
}