Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created January 9, 2013 12:31
Show Gist options
  • Select an option

  • Save tomharrigan/4492805 to your computer and use it in GitHub Desktop.

Select an option

Save tomharrigan/4492805 to your computer and use it in GitHub Desktop.
Change 'Your Text Here' to your desired text.
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('Popular Products', 'Your Text Here', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment