Created
August 3, 2013 16:20
-
-
Save intelliweb/6147012 to your computer and use it in GitHub Desktop.
Translate text in WordPress
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 | |
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