📌  相关文章
📜  woocommerce 更改“账单明细”文本 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:24.143000             🧑  作者: Mango

代码示例1
function wc_billing_field_strings( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
        case 'Billing details' :
            $translated_text = __( 'Billing Info', 'woocommerce' );
            break;
    }
    return $translated_text;
}
add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 );