/ Published in: PHP
Allows you to change the name of the "Posts" module within the admin section of WordPress.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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; }