更改相关产品标题在 WooCommerce 中添加产品名称

我有这个代码,它试图将“相关产品”翻译成“这些产品与产品名称相得益彰”。


这是我的代码:


add_filter(  'gettext',  'change_related_products_title', 10, 3 );

function change_related_products_title( $translated, $text, $domain  ) {


    $ptitle = get_page_by_title( 'Product Title', OBJECT, 'product' );


    if( $text === 'Related products' && $domain === 'woocommerce' ){

        $translated = esc_html__( 'These go well with '.$ptitle.' ', $domain);

    }

    return $translated;

}

它所显示的只是“这些很好用”,仅此而已。请帮助。


胡子哥哥
浏览 160回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP