我有这个代码,它试图将“相关产品”翻译成“这些产品与产品名称相得益彰”。
这是我的代码:
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;
}
它所显示的只是“这些很好用”,仅此而已。请帮助。