Skip to content

Instantly share code, notes, and snippets.

@intelliweb
Created August 3, 2013 16:20
Show Gist options
  • Save intelliweb/6147012 to your computer and use it in GitHub Desktop.
Save intelliweb/6147012 to your computer and use it in GitHub Desktop.
Translate text in WordPress
<?php
function turn_post_into_article($translated){
$translated = str_ireplace('Post', 'Article', $translated);
return $translated;
}
add_filter('gettext', 'turn_post_into_article');
add_filter('ngettext', 'turn_post_into_article');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment