Hướng dẫn thay đổi text trong WordPress

Để thay đổi text trong wordpress thì chèn đoạn code sau vào file Function

add_filter( ‘gettext’, function ( $strings ) {
/**
* Holding translations/changes.
* ‘to translate’ => ‘the translation or rewording’
*/
$text = array(
‘Related products’ => ‘Customers Also Viewed’,
‘Something else’ => ‘Translate/Change’,
);
$strings = str_ireplace( array_keys( $text ), $text, $strings );
return $strings;
}, 20 );

Bài Viết Liên Quan

0973.099.739