更改默认选项卡标题文本| Wordpress WooCommerce

时间:2015-07-10 15:33:08

标签: php wordpress woocommerce

在单一产品页面下的wordpress woocommerce中,我想更改默认标签标题:

更改"说明"功能更改"其他信息"到"规格"

我应该在哪个PHP文件下进行这些更改,以使其生效?

enter image description here

1 个答案:

答案 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;

}