Skip to content

Instantly share code, notes, and snippets.

@audrasjb
Last active December 28, 2019 08:42
Show Gist options
  • Save audrasjb/6f442fa595e96e77fa3706e88ea29f28 to your computer and use it in GitHub Desktop.
Save audrasjb/6f442fa595e96e77fa3706e88ea29f28 to your computer and use it in GitHub Desktop.
Replace any translated string in WordPress themes or plugins
<?php
/* Copy this in your child theme functions.php file */
function jba_change_plugin_translations( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Lire plus' :
$translated_text = 'Voir le produit';
break;
}
return $translated_text;
}
add_filter( 'gettext', 'jba_change_plugin_translations', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment