WordPress

Change wordpress admin language.

WordPress is in U.S. English by default. WordPress has already been translated into many languages and all are available on wordpress site for free. WordPress also providing support for translating it in different languages. If you want to change wordpress admin language, then you have to do the following:

  1. Go to http://codex.wordpress.org/WordPress_in_Your_Language link.
  2. You will see many languages in Gray background sidebar. Click on your required language. I am selecting Italian language.
  3. You will point to the wordpress language section. There you will find link like following. Click on it. In my case it will be
  4. On your language’s wordpress site you will find Download link, which is in red color. I have in Italian language and like following.
  5. Click on it and download it on your system.
  6. Un-zip it and Go in wordpress /wp-content/languages. You will see language files, there will be *.mo and *.po files. Copy languages folder and paste it in the worpress, wp-content folder for which you want to change language.
  7. Now open wp-config file of the wordpress, you want to change language; in your favorite editor and find following line.
       define('WPLANG','');
    

    Change it with following

       define('WPLANG', 'it_IT'); /// don't forget to change your language code with it_IT.
    
  8. Now, refresh your wordpress admin, you will see language is changed.

Enjoy….You just change wp-admin language.

websourceblog

ReactJs, NodeJs, Amazon Web Services, Symfony, Laravel, CodeIgniter, Zend Framework, WordPress, Drupal, Magento, Angular

Recent Posts

How to Add an Addon Domain in GoDaddy with Web Hosting Deluxe

Add an Addon Domain in GoDaddy with Web Hosting Deluxe (Step-by-Step Guide). If you are…

1 month ago

Developing a RESTful API with Node.js, Express.js, MongoDB, and TypeScript

The ability to create reliable APIs is essential in today's web development environment. I'll show…

4 months ago

XML in REST API response and SOAP XML.

The difference between XML that we get in response to any REST API and XML…

9 months ago

How to install and configure Apache2 on WSL2?

I hope you already have WSL2 installed and enabled. So, setting up Apache2 on WSL2…

1 year ago

How to install NVM on Windows?

Install NVM on Windows Node Js is a JavaScript runtime environment used widely in today’s…

1 year ago

How to reset WSL 2 user’s password?

You can easily reset WSL 2 users' password, by just following the following steps. Open…

2 years ago