Created
February 5, 2015 17:06
-
-
Save mauriciogofas/e6a113056a617db4aeb2 to your computer and use it in GitHub Desktop.
Tradução Ou Substituição de textos WP
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
<?php | |
// Tradução Ou Substituição de textos | |
function change_translate_text( $translated ) { | |
$text = array( | |
'Comments' => 'Comentários', | |
'Next' => 'Próximo', | |
'Previous' => 'Anterior', | |
); | |
$translated = str_ireplace( array_keys($text), $text, $translated ); | |
return $translated; | |
} | |
add_filter( 'gettext', 'change_translate_text', 20 ); | |
// END Tradução Ou Substituição de textos |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment