Changing the word ‘post’ to ‘project’ in WordPress

For my users, the word ‘post’ does not reflect what they are actually adding when submitting a ‘post’. For them, it’s a project.

I’d like to change the word ‘post’ everywhere it appears in the admin area to be ‘project’, is there a function I can add to do this?

Read More

Thanks

Related posts

Leave a Reply

1 comment

  1. add this to your functions.php

    add_filter('gettext',  'change_post_to_project');
    add_filter('ngettext',  'change_post_to_project');
    
    function change_post_to_project($translated) {
         $translated = str_ireplace('Post',  'Project',  $translated);  
         return $translated;
    }