Created
July 21, 2017 13:43
-
-
Save ahmedeshaan/a42394c39d226f5a3d27af07bc1a93bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_custom_translations( $strings ) { | |
$text = array( | |
'Related products' => 'Customers Also Viewed', | |
'Some other one you like to translate/change' => 'Translate/Change' | |
); | |
$strings = str_ireplace( array_keys( $text ), $text, $strings ); | |
return $strings; | |
} | |
add_filter( 'gettext', 'my_custom_translations', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment