PHPackages                             wp-cli/language-command - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. wp-cli/language-command

ActiveWp-cli-package[CLI &amp; Console](/categories/cli)

wp-cli/language-command
=======================

Installs, activates, and manages language packs.

v2.0.27(1mo ago)157.7M↑22.1%246MITPHPCI passing

Since Apr 18Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/wp-cli/language-command)[ Packagist](https://packagist.org/packages/wp-cli/language-command)[ Docs](https://github.com/wp-cli/language-command)[ RSS](/packages/wp-cli-language-command/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (10)Versions (41)Used By (6)

wp-cli/language-command
=======================

[](#wp-clilanguage-command)

Installs, activates, and manages language packs.

[![Testing](https://github.com/wp-cli/language-command/actions/workflows/testing.yml/badge.svg)](https://github.com/wp-cli/language-command/actions/workflows/testing.yml)

Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)

Using
-----

[](#using)

This package implements the following commands:

### wp language

[](#wp-language)

Installs, activates, and manages language packs.

```
wp language

```

**EXAMPLES**

```
# Install the Dutch core language pack.
$ wp language core install nl_NL
Downloading translation from https://downloads.wordpress.org/translation/core/6.4.3/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

# Activate the Dutch core language pack.
$ wp site switch-language nl_NL
Success: Language activated.

# Install the Dutch theme language pack for Twenty Ten.
$ wp language theme install twentyten nl_NL
Downloading translation from https://downloads.wordpress.org/translation/theme/twentyten/4.0/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

# Install the Dutch plugin language pack for Hello Dolly.
$ wp language plugin install hello-dolly nl_NL
Downloading translation from https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

```

### wp language core

[](#wp-language-core)

Installs, activates, and manages core language packs.

```
wp language core

```

**EXAMPLES**

```
# Install the Dutch core language pack.
$ wp language core install nl_NL
Downloading translation from https://downloads.wordpress.org/translation/core/6.4.3/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

# Activate the Dutch core language pack.
$ wp site switch-language nl_NL
Success: Language activated.

# Uninstall the Dutch core language pack.
$ wp language core uninstall nl_NL
Success: Language uninstalled.

# List installed core language packs.
$ wp language core list --status=installed
+----------+--------------+-------------+-----------+-----------+---------------------+
| language | english_name | native_name | status    | update    | updated             |
+----------+--------------+-------------+-----------+-----------+---------------------+
| nl_NL    | Dutch        | Nederlands  | installed | available | 2024-01-31 10:24:06 |
+----------+--------------+-------------+-----------+-----------+---------------------+

```

### wp language core activate

[](#wp-language-core-activate)

Activates a given language.

```
wp language core activate

```

**Warning: `wp language core activate` is deprecated. Use `wp site switch-language` instead.**

**OPTIONS**

```

	Language code to activate.

```

**EXAMPLES**

```
# Activate the given language.
$ wp language core activate ja
Success: Language activated.

```

### wp language core is-installed

[](#wp-language-core-is-installed)

Checks if a given language is installed.

```
wp language core is-installed

```

Returns exit code 0 when installed, 1 when uninstalled.

**OPTIONS**

```

	The language code to check.

```

**EXAMPLES**

```
# Check whether the German language is installed; exit status 0 if installed, otherwise 1.
$ wp language core is-installed de_DE
$ echo $?
1

```

### wp language core install

[](#wp-language-core-install)

Installs a given language.

```
wp language core install ... [--activate] [--format=]

```

Downloads the language pack from WordPress.org. Find your language code at:

**OPTIONS**

```
...
	Language code to install.

[--activate]
	If set, the language will be activated immediately after install.

[--format=]
	Render output in a particular format (for one or more languages).
	---
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Install the Brazilian Portuguese language.
$ wp language core install pt_BR
Downloading translation from https://downloads.wordpress.org/translation/core/6.5/pt_BR.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'pt_BR' installed.
Success: Installed 1 of 1 languages.

```

### wp language core list

[](#wp-language-core-list)

Lists all available languages.

```
wp language core list [--field=] [--=] [--fields=] [--format=]

```

**OPTIONS**

```
[--field=]
	Display the value of a single field

[--=]
	Filter results by key=value pairs.

[--fields=]
	Limit the output to specific fields.

[--format=]
	Render output in a particular format.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - count
	---

```

**AVAILABLE FIELDS**

These fields will be displayed by default for each translation:

- language
- english\_name
- native\_name
- status
- update
- updated

**EXAMPLES**

```
# List language,english_name,status fields of available languages.
$ wp language core list --fields=language,english_name,status
+----------------+-------------------------+-------------+
| language       | english_name            | status      |
+----------------+-------------------------+-------------+
| ar             | Arabic                  | uninstalled |
| ary            | Moroccan Arabic         | uninstalled |
| az             | Azerbaijani             | uninstalled |

```

### wp language core uninstall

[](#wp-language-core-uninstall)

Uninstalls a given language.

```
wp language core uninstall ...

```

**OPTIONS**

```
...
	Language code to uninstall.

```

**EXAMPLES**

```
# Uninstall the Japanese core language pack.
$ wp language core uninstall ja
Success: Language uninstalled.

```

### wp language core update

[](#wp-language-core-update)

Updates installed languages for core.

```
wp language core update [--dry-run] [--format=]

```

**OPTIONS**

```
[--dry-run]
	Preview which translations would be updated.

[--format=]
	Render output in a particular format. When not specified, updates show
	  progress messages and success/warning/error messages. When specified,
	  the output format changes based on the selected format.
	---
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Update installed core languages packs.
$ wp language core update
Updating 'Japanese' translation for WordPress 6.4.3...
Downloading translation from https://downloads.wordpress.org/translation/core/6.4.3/ja.zip...
Translation updated successfully.
Success: Updated 1/1 translation.

```

### wp language plugin

[](#wp-language-plugin)

Installs, activates, and manages plugin language packs.

```
wp language plugin

```

**EXAMPLES**

```
# Install the Dutch plugin language pack for Hello Dolly.
$ wp language plugin install hello-dolly nl_NL
Downloading translation from https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

# Uninstall the Dutch plugin language pack for Hello Dolly.
$ wp language plugin uninstall hello-dolly nl_NL
Language 'nl_NL' for 'hello-dolly' uninstalled.
+-------------+--------+-------------+
| name        | locale | status      |
+-------------+--------+-------------+
| hello-dolly | nl_NL  | uninstalled |
+-------------+--------+-------------+
Success: Uninstalled 1 of 1 languages.

# List installed plugin language packs for Hello Dolly.
$ wp language plugin list hello-dolly --status=installed
+-------------+----------+--------------+-------------+-----------+--------+---------------------+
| plugin      | language | english_name | native_name | status    | update | updated             |
+-------------+----------+--------------+-------------+-----------+--------+---------------------+
| hello-dolly | nl_NL    | Dutch        | Nederlands  | installed | none   | 2023-11-13 12:34:15 |
+-------------+----------+--------------+-------------+-----------+--------+---------------------+

```

### wp language plugin is-installed

[](#wp-language-plugin-is-installed)

Checks if a given language is installed.

```
wp language plugin is-installed  ...

```

Returns exit code 0 when installed, 1 when uninstalled.

**OPTIONS**

```

	Plugin to check for.

...
	The language code to check.

```

**EXAMPLES**

```
# Check whether the German language is installed for Akismet; exit status 0 if installed, otherwise 1.
$ wp language plugin is-installed akismet de_DE
$ echo $?
1

```

### wp language plugin install

[](#wp-language-plugin-install)

Installs a given language for a plugin.

```
wp language plugin install [] [--all] ... [--format=]

```

Downloads the language pack from WordPress.org.

**OPTIONS**

```
[]
	Plugin to install language for.

[--all]
	If set, languages for all plugins will be installed.

...
	Language code to install.

[--format=]
	Render output in a particular format. Used when installing languages for all plugins.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Install the Japanese language for Akismet.
$ wp language plugin install akismet ja
Downloading translation from https://downloads.wordpress.org/translation/plugin/akismet/4.0.3/ja.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'ja' installed.
Success: Installed 1 of 1 languages.

```

### wp language plugin list

[](#wp-language-plugin-list)

Lists all available languages for one or more plugins.

```
wp language plugin list [...] [--all] [--field=] [--=] [--fields=] [--format=]

```

**OPTIONS**

```
[...]
	One or more plugins to list languages for.

[--all]
	If set, available languages for all plugins will be listed.

[--field=]
	Display the value of a single field.

[--=]
	Filter results by key=value pairs.

[--fields=]
	Limit the output to specific fields.

[--format=]
	Render output in a particular format.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - count
	---

```

**AVAILABLE FIELDS**

These fields will be displayed by default for each translation:

- plugin
- language
- english\_name
- native\_name
- status
- update
- updated

**EXAMPLES**

```
# List available language packs for the plugin.
$ wp language plugin list hello-dolly --fields=language,english_name,status
+----------------+-------------------------+-------------+
| language       | english_name            | status      |
+----------------+-------------------------+-------------+
| ar             | Arabic                  | uninstalled |
| ary            | Moroccan Arabic         | uninstalled |
| az             | Azerbaijani             | uninstalled |

```

### wp language plugin uninstall

[](#wp-language-plugin-uninstall)

Uninstalls a given language for a plugin.

```
wp language plugin uninstall [] [--all] ... [--format=]

```

**OPTIONS**

```
[]
	Plugin to uninstall language for.

[--all]
	If set, languages for all plugins will be uninstalled.

...
	Language code to uninstall.

[--format=]
	Render output in a particular format. Used when installing languages for all plugins.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Uninstall the Japanese plugin language pack for Hello Dolly.
$ wp language plugin uninstall hello-dolly ja
Language 'ja' for 'hello-dolly' uninstalled.
+-------------+--------+-------------+
| name        | locale | status      |
+-------------+--------+-------------+
| hello-dolly | ja     | uninstalled |
+-------------+--------+-------------+
Success: Uninstalled 1 of 1 languages.

```

### wp language plugin update

[](#wp-language-plugin-update)

Updates installed languages for one or more plugins.

```
wp language plugin update [...] [--all] [--dry-run] [--format=]

```

**OPTIONS**

```
[...]
	One or more plugins to update languages for.

[--all]
	If set, languages for all plugins will be updated.

[--dry-run]
	Preview which translations would be updated.

[--format=]
	Render output in a particular format. When not specified, updates show
	  progress messages and success/warning/error messages. When specified,
	  the output format changes based on the selected format.
	---
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Update all installed language packs for all plugins.
$ wp language plugin update --all
Updating 'Japanese' translation for Akismet 3.1.11...
Downloading translation from https://downloads.wordpress.org/translation/plugin/akismet/3.1.11/ja.zip...
Translation updated successfully.
Success: Updated 1/1 translation.

```

### wp language theme

[](#wp-language-theme)

Installs, activates, and manages theme language packs.

```
wp language theme

```

**EXAMPLES**

```
# Install the Dutch theme language pack for Twenty Ten.
$ wp language theme install twentyten nl_NL
Downloading translation from https://downloads.wordpress.org/translation/theme/twentyten/4.0/nl_NL.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the translation...
Translation updated successfully.
Language 'nl_NL' installed.
Success: Installed 1 of 1 languages.

# Uninstall the Dutch theme language pack for Twenty Ten.
$ wp language theme uninstall twentyten nl_NL
Language 'nl_NL' for 'twentyten' uninstalled.
+-----------+--------+-------------+
| name      | locale | status      |
+-----------+--------+-------------+
| twentyten | nl_NL  | uninstalled |
+-----------+--------+-------------+
Success: Uninstalled 1 of 1 languages.

# List installed theme language packs for Twenty Ten.
$ wp language theme list twentyten --status=installed
+-----------+----------+--------------+-------------+-----------+--------+---------------------+
| theme     | language | english_name | native_name | status    | update | updated             |
+-----------+----------+--------------+-------------+-----------+--------+---------------------+
| twentyten | nl_NL    | Dutch        | Nederlands  | installed | none   | 2023-12-29 21:21:39 |
+-----------+----------+--------------+-------------+-----------+--------+---------------------+

```

### wp language theme is-installed

[](#wp-language-theme-is-installed)

Checks if a given language is installed.

```
wp language theme is-installed  ...

```

Returns exit code 0 when installed, 1 when uninstalled.

**OPTIONS**

```

	Theme to check for.

...
	The language code to check.

```

**EXAMPLES**

```
# Check whether the German language is installed for Twenty Seventeen; exit status 0 if installed, otherwise 1.
$ wp language theme is-installed twentyseventeen de_DE
$ echo $?
1

```

### wp language theme install

[](#wp-language-theme-install)

Installs a given language for a theme.

```
wp language theme install [] [--all] ... [--format=]

```

Downloads the language pack from WordPress.org.

**OPTIONS**

```
[]
	Theme to install language for.

[--all]
	If set, languages for all themes will be installed.

...
	Language code to install.

[--format=]
	Render output in a particular format. Used when installing languages for all themes.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Install the Japanese language for Twenty Seventeen.
$ wp language theme install twentyseventeen ja
Downloading translation from https://downloads.wordpress.org/translation/theme/twentyseventeen/1.3/ja.zip...
Unpacking the update...
Installing the latest version...
Translation updated successfully.
Language 'ja' installed.
Success: Installed 1 of 1 languages.

```

### wp language theme list

[](#wp-language-theme-list)

Lists all available languages for one or more themes.

```
wp language theme list [...] [--all] [--field=] [--=] [--fields=] [--format=]

```

**OPTIONS**

```
[...]
	One or more themes to list languages for.

[--all]
	If set, available languages for all themes will be listed.

[--field=]
	Display the value of a single field.

[--=]
	Filter results by key=value pairs.

[--fields=]
	Limit the output to specific fields.

[--format=]
	Render output in a particular format.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - count
	---

```

**AVAILABLE FIELDS**

These fields will be displayed by default for each translation:

- theme
- language
- english\_name
- native\_name
- status
- update
- updated

**EXAMPLES**

```
# List available language packs for the theme.
$ wp language theme list twentyten --fields=language,english_name,status
+----------------+-------------------------+-------------+
| language       | english_name            | status      |
+----------------+-------------------------+-------------+
| ar             | Arabic                  | uninstalled |
| ary            | Moroccan Arabic         | uninstalled |
| az             | Azerbaijani             | uninstalled |

```

### wp language theme uninstall

[](#wp-language-theme-uninstall)

Uninstalls a given language for a theme.

```
wp language theme uninstall [] [--all] ... [--format=]

```

**OPTIONS**

```
[]
	Theme to uninstall language for.

[--all]
	If set, languages for all themes will be uninstalled.

...
	Language code to uninstall.

[--format=]
	Render output in a particular format. Used when installing languages for all themes.
	---
	default: table
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Uninstall the Japanese theme language pack for Twenty Ten.
$ wp language theme uninstall twentyten ja
Language 'ja' for 'twentyten' uninstalled.
+-----------+--------+-------------+
| name      | locale | status      |
+-----------+--------+-------------+
| twentyten | ja     | uninstalled |
+-----------+--------+-------------+
Success: Uninstalled 1 of 1 languages.

```

### wp language theme update

[](#wp-language-theme-update)

Updates installed languages for one or more themes.

```
wp language theme update [...] [--all] [--dry-run] [--format=]

```

**OPTIONS**

```
[...]
	One or more themes to update languages for.

[--all]
	If set, languages for all themes will be updated.

[--dry-run]
	Preview which translations would be updated.

[--format=]
	Render output in a particular format. When not specified, updates show
	  progress messages and success/warning/error messages. When specified,
	  the output format changes based on the selected format.
	---
	options:
	  - table
	  - csv
	  - json
	  - summary
	---

```

**EXAMPLES**

```
# Update all installed language packs for all themes.
$ wp language theme update --all
Updating 'Japanese' translation for Twenty Fifteen 1.5...
Downloading translation from https://downloads.wordpress.org/translation/theme/twentyfifteen/1.5/ja.zip...
Translation updated successfully.
Success: Updated 1/1 translation.

```

### wp site switch-language

[](#wp-site-switch-language)

Activates a given language.

```
wp site switch-language

```

**OPTIONS**

```

	Language code to activate.

```

**EXAMPLES**

```
$ wp site switch-language ja
Success: Language activated.

```

Installing
----------

[](#installing)

This package is included with WP-CLI itself, no additional installation necessary.

To install the latest version of this package over what's included in WP-CLI, run:

```
wp package install git@github.com:wp-cli/language-command.git

```

Contributing
------------

[](#contributing)

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.

For a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.

### Reporting a bug

[](#reporting-a-bug)

Think you’ve found a bug? We’d love for you to help us get it fixed.

Before you create a new issue, you should [search existing issues](https://github.com/wp-cli/language-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.

Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/language-command/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, [review our bug report documentation](https://make.wordpress.org/cli/handbook/bug-reports/).

### Creating a pull request

[](#creating-a-pull-request)

Want to contribute a new feature? Please first [open a new issue](https://github.com/wp-cli/language-command/issues/new) to discuss whether the feature is a good fit for the project.

Once you've decided to commit the time to seeing your pull request through, [please follow our guidelines for creating a pull request](https://make.wordpress.org/cli/handbook/pull-requests/) to make sure it's a pleasant experience. See "[Setting up](https://make.wordpress.org/cli/handbook/pull-requests/#setting-up)" for details specific to working on this package locally.

Support
-------

[](#support)

GitHub issues aren't for general support questions, but there are other venues you can try:

*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*

###  Health Score

67

—

FairBetter than 100% of packages

Maintenance88

Actively maintained with recent releases

Popularity56

Moderate usage in the ecosystem

Community35

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~96 days

Recently: every ~87 days

Total

35

Last Release

53d ago

Major Versions

v1.0.6 → v2.0.02018-08-05

### Community

Maintainers

![](https://www.gravatar.com/avatar/4b5740d002b5556abcceed36e016c8f8ba6f533eefef6107b3c60a830704993b?d=identicon)[danielbachhuber](/maintainers/danielbachhuber)

![](https://www.gravatar.com/avatar/6dde7f578e5530884238e7173f768ae3a890b6d66eb99262a82f2c494a1b67d4?d=identicon)[schlessera](/maintainers/schlessera)

---

Top Contributors

[![danielbachhuber](https://avatars.githubusercontent.com/u/36432?v=4)](https://github.com/danielbachhuber "danielbachhuber (544 commits)")[![swissspidy](https://avatars.githubusercontent.com/u/841956?v=4)](https://github.com/swissspidy "swissspidy (194 commits)")[![schlessera](https://avatars.githubusercontent.com/u/83631?v=4)](https://github.com/schlessera "schlessera (148 commits)")[![scribu](https://avatars.githubusercontent.com/u/225715?v=4)](https://github.com/scribu "scribu (148 commits)")[![ocean90](https://avatars.githubusercontent.com/u/617637?v=4)](https://github.com/ocean90 "ocean90 (31 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (28 commits)")[![ernilambar](https://avatars.githubusercontent.com/u/2098823?v=4)](https://github.com/ernilambar "ernilambar (21 commits)")[![rodrigoprimo](https://avatars.githubusercontent.com/u/77215?v=4)](https://github.com/rodrigoprimo "rodrigoprimo (11 commits)")[![1naveengiri](https://avatars.githubusercontent.com/u/24760592?v=4)](https://github.com/1naveengiri "1naveengiri (10 commits)")[![gitlost](https://avatars.githubusercontent.com/u/481982?v=4)](https://github.com/gitlost "gitlost (10 commits)")[![szepeviktor](https://avatars.githubusercontent.com/u/952007?v=4)](https://github.com/szepeviktor "szepeviktor (8 commits)")[![NateWr](https://avatars.githubusercontent.com/u/2306629?v=4)](https://github.com/NateWr "NateWr (8 commits)")[![miya0001](https://avatars.githubusercontent.com/u/309946?v=4)](https://github.com/miya0001 "miya0001 (7 commits)")[![jrfnl](https://avatars.githubusercontent.com/u/663378?v=4)](https://github.com/jrfnl "jrfnl (6 commits)")[![mwilliamson](https://avatars.githubusercontent.com/u/391876?v=4)](https://github.com/mwilliamson "mwilliamson (6 commits)")[![nyordanov](https://avatars.githubusercontent.com/u/192220?v=4)](https://github.com/nyordanov "nyordanov (5 commits)")[![wojsmol](https://avatars.githubusercontent.com/u/4176111?v=4)](https://github.com/wojsmol "wojsmol (5 commits)")[![GeoJunkie](https://avatars.githubusercontent.com/u/7596032?v=4)](https://github.com/GeoJunkie "GeoJunkie (5 commits)")[![michaelw85](https://avatars.githubusercontent.com/u/3629094?v=4)](https://github.com/michaelw85 "michaelw85 (5 commits)")[![frankiejarrett](https://avatars.githubusercontent.com/u/522158?v=4)](https://github.com/frankiejarrett "frankiejarrett (4 commits)")

---

Tags

clihacktoberfestlanguagewordpresswp-cliwp-cli-package

### Embed Badge

![Health badge](/badges/wp-cli-language-command/health.svg)

```
[![Health](https://phpackages.com/badges/wp-cli-language-command/health.svg)](https://phpackages.com/packages/wp-cli-language-command)
```

###  Alternatives

[wp-cli/entity-command

Manage WordPress comments, menus, options, posts, sites, terms, and users.

1048.8M55](/packages/wp-cli-entity-command)[wp-cli/scaffold-command

Generates code for post types, taxonomies, blocks, plugins, child themes, etc.

1717.7M15](/packages/wp-cli-scaffold-command)[wp-cli/i18n-command

Provides internationalization tools for WordPress projects.

11610.4M52](/packages/wp-cli-i18n-command)[wp-cli/extension-command

Manages plugins and themes, including installs, activations, and updates.

919.0M53](/packages/wp-cli-extension-command)[wp-cli/db-command

Performs basic database operations using credentials stored in wp-config.php.

768.0M30](/packages/wp-cli-db-command)[wp-cli/server-command

Launches PHP's built-in web server for a specific WordPress installation.

687.2M5](/packages/wp-cli-server-command)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
