Home » Web Design » 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 Moran

    Sean Moran is a distinguished tech author and entrepreneur with over 20 years of extensive experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and various other tech domains. His expertise and contributions to the industry have been recognized in numerous esteemed publications. Sean is widely acclaimed for his sharp intellect and innovative insights, solidifying his reputation as a leading figure in the tech community. His work not only advances the field but also helps businesses and individuals navigate the complexities of the digital world.

    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 Replace HTML Characters With HTML Entities In WordPress Comments

    How To Hide Or Remove WordPress Page And Post Titles With CSS

    How to change the font size in WordPress using HTML