Việt hóa một số cụm từ tiếng anh trong wordpress

Việt hóa một số cụm từ tiếng anh trong wordpress không dùng Plugin, bạn có thể bổ sung từ khóa cần Việt hóa dựa vào code sau và điền vào file functions.php trong theme web của bạn

function my_custom_translations( $strings ) {
$text = array(
'Quick View' => 'Xem nhanh',
'SHOPPING CART' => 'Giỏ hàng',
'CHECKOUT DETAILS' => 'Thanh toán',
'ORDER COMPLETE' => 'Hoàn thành'
);
$strings = str_ireplace( array_keys( $text ), $text, $strings );
return $strings;
}
add_filter( 'gettext', 'my_custom_translations', 20 );