Created
May 28, 2012 18:28
-
-
Save mestrewp/2820483 to your computer and use it in GitHub Desktop.
Como mudar o texto "POST" para "ARTIGOS"
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', 'change_post_to_article'); | |
add_filter('ngettext', 'change_post_to_article'); | |
function change_post_to_article($translated) { | |
$translated = str_ireplace('Post', 'Artigos', $translated); | |
return $translated; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment