Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Created February 5, 2015 17:06
Show Gist options
  • Save mauriciogofas/e6a113056a617db4aeb2 to your computer and use it in GitHub Desktop.
Save mauriciogofas/e6a113056a617db4aeb2 to your computer and use it in GitHub Desktop.
Tradução Ou Substituição de textos WP
<?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