/ Published in: PHP
URL: http://bit.ly/smag-wp31tips
Expand |
Embed | Plain Text
// Change 'Posts' to 'Articles' // via bit.ly/smag-wp31tips // hook the translation filters add_filter( 'gettext', 'change_post_to_article' ); add_filter( 'ngettext', 'change_post_to_article' ); function change_post_to_article( $translated ) { $translated = str_ireplace( 'Post', 'Article', $translated ); // ireplace is PHP5 only return $translated; }
You need to login to post a comment.
