Skip to content

Instantly share code, notes, and snippets.

@amielucha
Created July 25, 2016 13:49
Show Gist options
  • Select an option

  • Save amielucha/b46226fe31c1a4271190640e20960280 to your computer and use it in GitHub Desktop.

Select an option

Save amielucha/b46226fe31c1a4271190640e20960280 to your computer and use it in GitHub Desktop.
WordPress - translate a single string
<?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