Code hay
Code dịch đa phần tử trên website
Áp dụng: plugin Loco translate không hoạt động, không tìm thấy hoặc không nhất thiết phải cài Plugin.
Dán vào functions của childtheme:
// Dịch đa phần tử // function dich_text( $translated ) { $text = array( 'Buy now' => 'Ghé xem', 'SHOPPING CART' => 'Giỏ hàng', 'CHECKOUT DETAILS' => 'Thanh toán', 'ORDER COMPLETE' => 'Hoàn tất', 'QUICK VIEW' => 'Xem nhanh', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'dich_text', 20 );