Home » Blog » Cybersecurity » Cybersecurity » How To Change The “Posts” Menu Title To “Articles” In The WordPress Dashboard
Change WordPress Posts To Articles Dashboard

How To Change The “Posts” Menu Title To “Articles” In The WordPress Dashboard

Changing Posts To Articles In The WordPress Dashboard

The WordPress user dashboard is simple to customize and many WordPress web designers seek to offer a custom dashboard for their clients. In regards to a possible client’s website which may offer articles in a news format or style, the title “Articles” opposed to “Posts” would be much more suitable and less confusing inside the WordPress dashboard for this client.

Change WordPress Posts To Articles Dashboard

  • Included is a simple PHP snippet which will change the words “Posts” and “All Posts” to “Articles” and “All Articles” (as shown in the image).

Down Copy and paste the snippet below into your functions.php file

add_filter('gettext', 'change_post_to_article');
add_filter('ngettext', 'change_post_to_article');
function change_post_to_article($translated) {
$translated = str_ireplace('Post', 'Article', $translated);
return $translated;
}
  • How to change the Howdy greeting message
  • Sean Doyle

    Sean is a tech author and engineer with over 20 years of experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and other topics. He is featured in several publications.

    More Reading

    Post navigation

    1 Comment

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    How To Install WordPress Themes

    How To Stop WordPress From Compressing JPG Files

    How To Limit WordPress To Search By Post Titles Only