Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:28
Show Gist options
  • Save mestrewp/2820483 to your computer and use it in GitHub Desktop.
Save mestrewp/2820483 to your computer and use it in GitHub Desktop.
Como mudar o texto "POST" para "ARTIGOS"
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