/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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 ) { return $translated; }
URL: http://bit.ly/smag-wp31tips