Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save estevecastells/ff2355f4c1d856663fe75a52ffbdd3df to your computer and use it in GitHub Desktop.
Save estevecastells/ff2355f4c1d856663fe75a52ffbdd3df to your computer and use it in GitHub Desktop.
Translate a string via PHP (WordPress)
//Translate string via PHP
add_filter('gettext', 'translate_reply');
add_filter('ngettext', 'translate_reply');
function translate_reply($translated) {
$translated = str_ireplace('String you don't like', 'String you want to have', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment