📜  wordpress 翻译特定文本 php 代码示例

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

代码示例1
function translate_specific_text( $translated_text ) {
    if ( $translated_text == 'Old Text' ) {
        $translated_text = 'New Translation';
    }
    return $translated_text;
}
add_filter( 'gettext', 'translate_specific_text', 20 );