Skip to content

Instantly share code, notes, and snippets.

@MrThiemann
Last active March 2, 2021 20:19
Show Gist options
  • Save MrThiemann/21d8a713c57e6ae52fb4790d358e92cf to your computer and use it in GitHub Desktop.
Save MrThiemann/21d8a713c57e6ae52fb4790d358e92cf to your computer and use it in GitHub Desktop.
entweder in die functions.php einfügen oder mit dem Wordpress-Plugin "Code Snippet"
// Übersetzungen und Texte anpassen
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('this is your text in english', 'dies ist euer text in englisch', $translated);
$translated = str_ireplace('noch ein Text', 'another text', $translated);
$translated = str_ireplace('wordpress', 'kann natürlich auch durch alles andere ersetzt werden', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment