Skip to content

Instantly share code, notes, and snippets.

@chriswagoner
Created June 23, 2017 17:28
Show Gist options
  • Select an option

  • Save chriswagoner/8b8f3a7b746a0e1f627de74cd23af9c8 to your computer and use it in GitHub Desktop.

Select an option

Save chriswagoner/8b8f3a7b746a0e1f627de74cd23af9c8 to your computer and use it in GitHub Desktop.
Wordpress Replace Text
/** FILTER THE TEXT, THEN EXECUTE A FUNCTION THAT USES THE FILTER **/
add_filter( 'gettext', 'grab_text', 20, 3 );
function grab_text( $translated_text, $text, $domain ) {
if ( $translated_text == 'Barcode' ) {
$translated_text = 'UPC';
}
return $translated_text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment