Skip to content

Instantly share code, notes, and snippets.

@amielucha
Created November 24, 2015 16:57
Show Gist options
  • Select an option

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

Select an option

Save amielucha/0bbd59ec2229f12a247f to your computer and use it in GitHub Desktop.
WordPress translate a string
// Translate a string in functions.php
function translate_buy($translated) {
$translated = str_ireplace('Place order', 'Buy it now!', $translated);
return $translated;
}
add_filter('gettext', 'translate_buy');
add_filter('ngettext', 'translate_buy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment