Thanks for your time.
I want to have the WordPress dashboard treat Posts (vanilla, not custom post types or anything) exactly as normal, but to replace the word with something else. I’ve tried plugins that claim to do this and they replace it in some locations but not others.
The hardest location to change has been at “view all posts” where the word stubbornly refuses to change from “Posts” at the title even with site-wide text replacement via plugin.
What is the correct way to inform WordPress that I want to call Posts by a different name?
Put this in your functions.php file (obviously change “News Articles” to whatever you want the post name to be):
And if you are worried about translation (based on the comments to your question), just add the appropriate
__( 'News Articles', 'my-text-domain' );
function for each item…