Skip to content

Instantly share code, notes, and snippets.

@jsstoni
Created May 15, 2020 16:52
Show Gist options
  • Save jsstoni/d885d2f1b15c86b865b175949cb9092e to your computer and use it in GitHub Desktop.
Save jsstoni/d885d2f1b15c86b865b175949cb9092e to your computer and use it in GitHub Desktop.
reemplazar texto en wordpress
add_filter('gettext', 'traductor');
add_filter('ngettext', 'traductor');
function traductor($text) {
$text = str_ireplace('Detalles de facturación', 'El texto que quiero aqui', $text);
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment