WooCommerce 修改商品頁「產品描述」標籤文字

/**
 * WooCommerce 修改商品頁「產品描述」標籤文字
 * @see https://v123.tw/rename_product_description_tab_label
 * @author v123 tw
 */
 
add_filter( 'woocommerce_product_description_tab_title', 'v123_rename_product_description_tab_label' );
add_filter( 'woocommerce_product_description_heading', 'v123_rename_product_description_tab_label' );
function v123_rename_product_description_tab_label() {
    return '產品描述';
}

追加另一個方法

除了修改名稱以外,也可以修改其它參數,比如說排序,可以參考下方範例

/**
 * WooCommerce 修改商品頁「產品描述」標籤文字
 * @see https://v123.tw/rename_product_description_tab_label
 * @author v123 tw
 */
add_filter('woocommerce_product_tabs','v123_rename_product_description_tab_label');
function v123_rename_product_description_tab_label($tabs)
{
	$tabs['description']['title'] = "產品描述";
	$tabs['description']['priority'] = 1;
	return $tabs;
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料