Changing the wording of "Posts" within the admin
-
Theme: SimpleFolio 1.5
Needing to change the wording of “Post” or “Posts” all across the admin. Some of my users have been confused by the difference between posts and pages, and I’ll like to change the wording of “Posts” to “Articles” which I think they would find more friendly to understanding. I’ve been all over the wordpress files and have been unable to change what I need. I was able to change the wording in the menu, but it is still used in the heading when on the edit posts page. I ran across some information that used a filter in the functions.php file to make a similar change to other wording but do not know what to modify it to in order to change “Posts”. The method shown was as follows:
add_filter( 'register', 'mf_change_register_text' ); function mf_change_register_text( $c ){ return str_replace('Site Admin', "Dashboard", $c); }
Does anybody know how to make this work to change “Posts” or “Post” to “Articles” or “Article”?
Thanks for your help.
- The topic ‘Changing the wording of "Posts" within the admin’ is closed to new replies.