Created
May 15, 2020 16:52
-
-
Save jsstoni/d885d2f1b15c86b865b175949cb9092e to your computer and use it in GitHub Desktop.
reemplazar texto en wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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