Skip to content

Instantly share code, notes, and snippets.

@evrpress
Last active January 13, 2016 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evrpress/c57da52a3848305524e8 to your computer and use it in GitHub Desktop.
Save evrpress/c57da52a3848305524e8 to your computer and use it in GitHub Desktop.
Replacing certain strings
function my_mymail_text_strings( $translated_text, $org_text, $domain ) {
if($domain != 'mymail') return $translated_text;
switch ( $org_text ) {
case 'Search for Text to Replace' :
$translated_text = 'Replace it with this text';
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_mymail_text_strings', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment