Created
July 25, 2016 13:49
-
-
Save amielucha/b46226fe31c1a4271190640e20960280 to your computer and use it in GitHub Desktop.
WordPress - translate a single string
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
| <?php | |
| // place in functions.php | |
| add_filter('gettext', 'lightseek_translate_text'); | |
| add_filter('ngettext', 'lightseek_translate_text'); | |
| function lightseek_translate_text($translated) { | |
| $translated = str_ireplace('Old String', 'New String', $translated); | |
| return $translated; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment