diff --git a/.actrc b/.actrc deleted file mode 100644 index 99e6b7ec..00000000 --- a/.actrc +++ /dev/null @@ -1,3 +0,0 @@ -# Configuration file for nektos/act. -# See https://github.com/nektos/act#configuration --P ubuntu-latest=shivammathur/node:latest diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 84f918ed..00000000 --- a/.editorconfig +++ /dev/null @@ -1,26 +0,0 @@ -# This file is for unifying the coding style for different editors and IDEs -# editorconfig.org - -# WordPress Coding Standards -# https://make.wordpress.org/core/handbook/coding-standards/ - -# From https://github.com/WordPress/wordpress-develop/blob/trunk/.editorconfig with a couple of additions. - -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true -indent_style = tab - -[{*.yml,*.feature,.jshintrc,*.json}] -indent_style = space -indent_size = 2 - -[*.md] -trim_trailing_whitespace = false - -[{*.txt,wp-config-sample.php}] -end_of_line = crlf diff --git a/.github/workflows/check-branch-alias.yml b/.github/workflows/check-branch-alias.yml deleted file mode 100644 index 78da6371..00000000 --- a/.github/workflows/check-branch-alias.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Check Branch Alias - -on: - release: - types: [released] - workflow_dispatch: - -permissions: - contents: write - pull-requests: write - -jobs: - check-branch-alias: - uses: wp-cli/.github/.github/workflows/reusable-check-branch-alias.yml@main diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml deleted file mode 100644 index 07e4fd1f..00000000 --- a/.github/workflows/code-quality.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Code Quality Checks - -on: - pull_request: - push: - branches: - - main - - master - -jobs: - code-quality: - uses: wp-cli/.github/.github/workflows/reusable-code-quality.yml@main diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml deleted file mode 100644 index 5158ca68..00000000 --- a/.github/workflows/copilot-setup-steps.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: "Copilot Setup Steps" - -on: - workflow_dispatch: - push: - paths: - - .github/workflows/copilot-setup-steps.yml - pull_request: - paths: - - .github/workflows/copilot-setup-steps.yml - -jobs: - copilot-setup-steps: - runs-on: ubuntu-latest - permissions: - contents: read - - steps: - - name: Checkout code - uses: actions/checkout@v6 - - - name: Check existence of composer.json file - id: check_composer_file - uses: andstor/file-existence-action@v3 - with: - files: "composer.json" - - - name: Set up PHP environment - if: steps.check_composer_file.outputs.files_exists == 'true' - uses: shivammathur/setup-php@v2 - with: - php-version: 'latest' - ini-values: zend.assertions=1, error_reporting=-1, display_errors=On - coverage: 'none' - tools: composer,cs2pr - env: - COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Install Composer dependencies & cache dependencies - if: steps.check_composer_file.outputs.files_exists == 'true' - uses: ramsey/composer-install@v3 - env: - COMPOSER_ROOT_VERSION: dev-${{ github.event.repository.default_branch }} - with: - # Bust the cache at least once a month - output format: YYYY-MM. - custom-cache-suffix: $(date -u "+%Y-%m") diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml deleted file mode 100644 index 14dffc54..00000000 --- a/.github/workflows/issue-triage.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: Issue and PR Triage - -'on': - issues: - types: [opened] - pull_request_target: - types: [opened] - workflow_dispatch: - inputs: - issue_number: - description: 'Issue/PR number to triage (leave empty to process all)' - required: false - type: string - -jobs: - issue-triage: - uses: wp-cli/.github/.github/workflows/reusable-issue-triage.yml@main - with: - issue_number: >- - ${{ - (github.event_name == 'workflow_dispatch' && inputs.issue_number) || - (github.event_name == 'pull_request_target' && github.event.pull_request.number) || - (github.event_name == 'issues' && github.event.issue.number) || - '' - }} diff --git a/.github/workflows/manage-labels.yml b/.github/workflows/manage-labels.yml deleted file mode 100644 index 45711bde..00000000 --- a/.github/workflows/manage-labels.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Manage Labels - -'on': - workflow_dispatch: - push: - branches: - - main - - master - paths: - - 'composer.json' - -permissions: - issues: write - contents: read - -jobs: - manage-labels: - uses: wp-cli/.github/.github/workflows/reusable-manage-labels.yml@main diff --git a/.github/workflows/regenerate-readme.yml b/.github/workflows/regenerate-readme.yml deleted file mode 100644 index c633d9d4..00000000 --- a/.github/workflows/regenerate-readme.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Regenerate README file - -on: - workflow_dispatch: - push: - branches: - - main - - master - paths-ignore: - - "features/**" - - "README.md" - -jobs: - regenerate-readme: - uses: wp-cli/.github/.github/workflows/reusable-regenerate-readme.yml@main diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml deleted file mode 100644 index 1044b798..00000000 --- a/.github/workflows/testing.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Testing - -on: - pull_request: - push: - branches: - - main - - master - schedule: - - cron: '17 1 * * *' # Run every day on a seemly random time. - -jobs: - test: - uses: wp-cli/.github/.github/workflows/reusable-testing.yml@main diff --git a/.github/workflows/welcome-new-contributors.yml b/.github/workflows/welcome-new-contributors.yml deleted file mode 100644 index c38e033b..00000000 --- a/.github/workflows/welcome-new-contributors.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Welcome New Contributors - -on: - pull_request_target: - types: [opened] - branches: - - main - - master - -jobs: - welcome: - uses: wp-cli/.github/.github/workflows/reusable-welcome-new-contributors.yml@main diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index 1ff84f6d..00000000 --- a/AGENTS.md +++ /dev/null @@ -1,121 +0,0 @@ -# Instructions - -This package is part of WP-CLI, the official command line interface for WordPress. For a detailed explanation of the project structure and development workflow, please refer to the main @README.md file. - -## Best Practices for Code Contributions - -When contributing to this package, please adhere to the following guidelines: - -* **Follow Existing Conventions:** Before writing any code, analyze the existing codebase in this package to understand the coding style, naming conventions, and architectural patterns. -* **Focus on the Package's Scope:** All changes should be relevant to the functionality of the package. -* **Write Tests:** All new features and bug fixes must be accompanied by acceptance tests using Behat. You can find the existing tests in the `features/` directory. There may be PHPUnit unit tests as well in the `tests/` directory. -* **Update Documentation:** If your changes affect the user-facing functionality, please update the relevant inline code documentation. - -### Building and running - -Before submitting any changes, it is crucial to validate them by running the full suite of static code analysis and tests. To run the full suite of checks, execute the following command: `composer test`. - -This single command ensures that your changes meet all the quality gates of the project. While you can run the individual steps separately, it is highly recommended to use this single command to ensure a comprehensive validation. - -### Useful Composer Commands - -The project uses Composer to manage dependencies and run scripts. The following commands are available: - -* `composer install`: Install dependencies. -* `composer test`: Run the full test suite, including linting, code style checks, static analysis, and unit/behavior tests. -* `composer lint`: Check for syntax errors. -* `composer phpcs`: Check for code style violations. -* `composer phpcbf`: Automatically fix code style violations. -* `composer phpstan`: Run static analysis. -* `composer phpunit`: Run unit tests. -* `composer behat`: Run behavior-driven tests. - -### Coding Style - -The project follows the `WP_CLI_CS` coding standard, which is enforced by PHP_CodeSniffer. The configuration can be found in `phpcs.xml.dist`. Before submitting any code, please run `composer phpcs` to check for violations and `composer phpcbf` to automatically fix them. - -## Documentation - -The `README.md` file might be 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)). In that case, changes need to be made against the corresponding part of the codebase. - -### Inline Documentation - -Only write high-value comments if at all. Avoid talking to the user through comments. - -## Testing - -The project has a comprehensive test suite that includes unit tests, behavior-driven tests, and static analysis. - -* **Unit tests** are written with PHPUnit and can be found in the `tests/` directory. The configuration is in `phpunit.xml.dist`. -* **Behavior-driven tests** are written with Behat and can be found in the `features/` directory. The configuration is in `behat.yml`. -* **Static analysis** is performed with PHPStan. - -All tests are run on GitHub Actions for every pull request. - -When writing tests, aim to follow existing patterns. Key conventions include: - -* When adding tests, first examine existing tests to understand and conform to established conventions. -* For unit tests, extend the base `WP_CLI\Tests\TestCase` test class. -* For Behat tests, only WP-CLI commands installed in `composer.json` can be run. - -### Behat Steps - -WP-CLI makes use of a Behat-based testing framework and provides a set of custom step definitions to write feature tests. - -> **Note:** If you are expecting an error output in a test, you need to use `When I try ...` instead of `When I run ...` . - -#### Given - -* `Given an empty directory` - Creates an empty directory. -* `Given /^an? (empty|non-existent) ([^\s]+) directory$/` - Creates or deletes a specific directory. -* `Given an empty cache` - Clears the WP-CLI cache directory. -* `Given /^an? ([^\s]+) (file|cache file):$/` - Creates a file with the given contents. -* `Given /^"([^"]+)" replaced with "([^"]+)" in the ([^\s]+) file$/` - Search and replace a string in a file using regex. -* `Given /^that HTTP requests to (.*?) will respond with:$/` - Mock HTTP requests to a given URL. -* `Given WP files` - Download WordPress files without installing. -* `Given wp-config.php` - Create a wp-config.php file using `wp config create`. -* `Given a database` - Creates an empty database. -* `Given a WP install(ation)` - Installs WordPress. -* `Given a WP install(ation) in :subdir` - Installs WordPress in a given directory. -* `Given a WP install(ation) with Composer` - Installs WordPress with Composer. -* `Given a WP install(ation) with Composer and a custom vendor directory :vendor_directory` - Installs WordPress with Composer and a custom vendor directory. -* `Given /^a WP multisite (subdirectory|subdomain)?\s?(install|installation)$/` - Installs WordPress Multisite. -* `Given these installed and active plugins:` - Installs and activates one or more plugins. -* `Given a custom wp-content directory` - Configure a custom `wp-content` directory. -* `Given download:` - Download multiple files into the given destinations. -* `Given /^save (STDOUT|STDERR) ([\'].+[^\'])?\s?as \{(\w+)\}$/` - Store STDOUT or STDERR contents in a variable. -* `Given /^a new Phar with (?:the same version|version "([^"]+)")$/` - Build a new WP-CLI Phar file with a given version. -* `Given /^a downloaded Phar with (?:the same version|version "([^"]+)")$/` - Download a specific WP-CLI Phar version from GitHub. -* `Given /^save the (.+) file ([\'].+[^\'])? as \{(\w+)\}$/` - Stores the contents of the given file in a variable. -* `Given a misconfigured WP_CONTENT_DIR constant directory` - Modify wp-config.php to set `WP_CONTENT_DIR` to an empty string. -* `Given a dependency on current wp-cli` - Add `wp-cli/wp-cli` as a Composer dependency. -* `Given a PHP built-in web server` - Start a PHP built-in web server in the current directory. -* `Given a PHP built-in web server to serve :subdir` - Start a PHP built-in web server in the given subdirectory. - -#### When - -* ``When /^I launch in the background `([^`]+)`$/`` - Launch a given command in the background. -* ``When /^I (run|try) `([^`]+)`$/`` - Run or try a given command. -* ``When /^I (run|try) `([^`]+)` from '([^\s]+)'$/`` - Run or try a given command in a subdirectory. -* `When /^I (run|try) the previous command again$/` - Run or try the previous command again. - -#### Then - -* `Then /^the return code should( not)? be (\d+)$/` - Expect a specific exit code of the previous command. -* `Then /^(STDOUT|STDERR) should( strictly)? (be|contain|not contain):$/` - Check the contents of STDOUT or STDERR. -* `Then /^(STDOUT|STDERR) should be a number$/` - Expect STDOUT or STDERR to be a numeric value. -* `Then /^(STDOUT|STDERR) should not be a number$/` - Expect STDOUT or STDERR to not be a numeric value. -* `Then /^STDOUT should be a table containing rows:$/` - Expect STDOUT to be a table containing the given rows. -* `Then /^STDOUT should end with a table containing rows:$/` - Expect STDOUT to end with a table containing the given rows. -* `Then /^STDOUT should be JSON containing:$/` - Expect valid JSON output in STDOUT. -* `Then /^STDOUT should be a JSON array containing:$/` - Expect valid JSON array output in STDOUT. -* `Then /^STDOUT should be CSV containing:$/` - Expect STDOUT to be CSV containing certain values. -* `Then /^STDOUT should be YAML containing:$/` - Expect STDOUT to be YAML containing certain content. -* `Then /^(STDOUT|STDERR) should be empty$/` - Expect STDOUT or STDERR to be empty. -* `Then /^(STDOUT|STDERR) should not be empty$/` - Expect STDOUT or STDERR not to be empty. -* `Then /^(STDOUT|STDERR) should be a version string (<|<=|>|>=|==|=|<>) ([+\w.{}-]+)$/` - Expect STDOUT or STDERR to be a version string comparing to the given version. -* `Then /^the (.+) (file|directory) should( strictly)? (exist|not exist|be:|contain:|not contain):$/` - Expect a certain file or directory to (not) exist or (not) contain certain contents. -* `Then /^the contents of the (.+) file should( not)? match (((\/.*\/)|(#.#))([a-z]+)?)$/` - Match file contents against a regex. -* `Then /^(STDOUT|STDERR) should( not)? match (((\/.*\/)|(#.#))([a-z]+)?)$/` - Match STDOUT or STDERR against a regex. -* `Then /^an email should (be sent|not be sent)$/` - Expect an email to be sent (or not). -* `Then the HTTP status code should be :code` - Expect the HTTP status code for visiting `http://localhost:8080`. diff --git a/CNAME b/CNAME index 92366363..07dab832 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -wp-cli.org \ No newline at end of file +wp-cli.org diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 32d24cd4..00000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (C) 2012-2018 WP-CLI Development Group (https://github.com/wp-cli/wp-cli.github.com/contributors) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/README.md b/README.md index 51421adb..24bcf45a 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,7 @@ SUBCOMMANDS ### How to translate -1. Add your language to `[_config.yml](https://github.com/wp-cli/wp-cli.github.com/blob/main/_config.yml)`. +1. Add your language to `[_config.yml](https://github.com/wp-cli/wp-cli.github.com/blob/master/_config.yml)`. 2. Create a folder under the name of your appropriate language code (IETF language tag). e.g. ja or pt_BR -3. Copy the *English* `index.md` into your language's directory. +3. Copy `index.md` into your language's directory. 4. Translate `index.md`. - -Note: Please avoid using a language file other than the English one in the root folder as your source for translating, as it might not be up-to-date. The root `index.md` is considered to be the source of truth and is the only one guaranteed to be current. diff --git a/_config.yml b/_config.yml index 99a9a947..a07a999a 100644 --- a/_config.yml +++ b/_config.yml @@ -5,7 +5,7 @@ markdown: kramdown gems: - jekyll-paginate - jekyll-redirect-from -url: https://wp-cli.org +url: http://wp-cli.org permalink: /blog/:title.html paginate: 10 paginate_path: /blog/page:num @@ -34,9 +34,6 @@ languages: - label: Japanese iso-alpha2: ja path: /ja/ -- label: Persian (Farsi) - iso-alpha2: fa - path: /fa/ - label: Français iso-alpha2: fr path: /fr/ @@ -58,12 +55,3 @@ languages: - label: Italiano iso-alpha2: it path: /it/ -- label: Español - iso-alpha2: es - path: /es/ -- label: Română - iso-alpha2: ro - path: /ro/ -- label: 简体中文 - iso-alpha2: zh-cn - path: /zh-cn/ diff --git a/_includes/footer.html b/_includes/footer.html index d643c363..a26e6675 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -5,7 +5,7 @@ {% include global-parameters.html %} {% endif %} - + {% include analytics.html %} diff --git a/_includes/header.html b/_includes/header.html index cc3a7b51..dda4a5b6 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,5 +1,5 @@ {% assign hreflang = 'en' %}{% for lang in site.languages %}{% if lang.path == page.url %}{% assign hreflang = lang.iso-alpha2 %}{% endif %}{% endfor %} - +
@@ -17,11 +17,10 @@ {% for lang in site.languages %} {% endfor %} - + + {% if page.display_global_parameters %} - {% elsif page.direction == 'rtl' %} - {% else %} {% endif %} diff --git a/_includes/languages.html b/_includes/languages.html index 487fc9df..2c44f118 100644 --- a/_includes/languages.html +++ b/_includes/languages.html @@ -10,7 +10,7 @@ 'use strict'; var langs = document.getElementById( 'languages' ); - // Only apply this after we set the Selected option. + // Only apply this after we set the Selected option langs.onchange = function( ev ) { if ( ev.currentTarget && ev.currentTarget.value ) { location.href = ev.currentTarget.value; @@ -25,7 +25,7 @@ count = opts.length; for ( var i = 0; i < count; i++ ){ - // Only happens if you have language path on the start of the location.pathname. + // Only happens if you have language path on the start of the location.pathname if ( 0 === window.location.pathname.indexOf( opts[ i ].value ) ) { opts[ i ].setAttribute( 'selected', 'selected' ); } diff --git a/_posts/2012-11-05-new-home.md b/_posts/2012-11-05-new-home.md index 6db9b4e1..c617d93d 100644 --- a/_posts/2012-11-05-new-home.md +++ b/_posts/2012-11-05-new-home.md @@ -8,4 +8,4 @@ Welcome to the new website for the WP-CLI project! wp-cli already has a public [code repository](https://github.com/wp-cli/wp-cli), an [issue tracker](https://github.com/wp-cli/wp-cli/issues) and a [wiki](https://github.com/wp-cli/wp-cli/wiki). The only thing that was missing was a blog for publishing release notes and other news. -Since GitHub has built-in support for [Jekyll](https://github.com/mojombo/jekyll/wiki), I decided to use that. The code for this website is also public: [github.com/wp-cli/wp-cli.github.com](https://github.com/wp-cli/wp-cli.github.com) +Since github has built-in support for [Jekyll](https://github.com/mojombo/jekyll/wiki), I decided to use that. The code for this website is also public: [github.com/wp-cli/wp-cli.github.com](https://github.com/wp-cli/wp-cli.github.com) diff --git a/_posts/2012-11-10-wp-shell.md b/_posts/2012-11-10-wp-shell.md index 4a380785..cb478d35 100644 --- a/_posts/2012-11-10-wp-shell.md +++ b/_posts/2012-11-10-wp-shell.md @@ -21,4 +21,4 @@ Here's a contrived example session: wp> exit scribu@air:~/wp/core$ -`wp shell` will be available in the 0.7 release of WP-CLI, but if you want to try it out right now, clone the [latest version](https://github.com/wp-cli/wp-cli) from GitHub. If you have suggestions for making it better, don't hesitate to open issues and pull requests. +`wp shell` will be available in the 0.7 release of WP-CLI, but if you want to try it out right now, clone the [latest version](https://github.com/wp-cli/wp-cli) from github. If you have suggestions for making it better, don't hesitate to open issues and pull requests. diff --git a/_posts/2013-06-15-version-0.10.1.md b/_posts/2013-06-15-version-0.10.1.md index ef0f4e46..121168f2 100644 --- a/_posts/2013-06-15-version-0.10.1.md +++ b/_posts/2013-06-15-version-0.10.1.md @@ -17,4 +17,4 @@ Internals: * show warning if a URL redirect is attempted while using WP-CLI -You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=11&state=closed) on GitHub. +You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=11&state=closed) on Github. diff --git a/_posts/2013-06-26-version-0.10.2.md b/_posts/2013-06-26-version-0.10.2.md index 28a59aec..207b3378 100644 --- a/_posts/2013-06-26-version-0.10.2.md +++ b/_posts/2013-06-26-version-0.10.2.md @@ -16,4 +16,4 @@ Internals: * fix required version for php-cli-tools package -You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=12&state=closed) on GitHub. +You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=12&state=closed) on Github. diff --git a/_posts/2013-08-05-version-0.11.md b/_posts/2013-08-05-version-0.11.md index 9356b9e2..3499643a 100644 --- a/_posts/2013-08-05-version-0.11.md +++ b/_posts/2013-08-05-version-0.11.md @@ -51,6 +51,6 @@ Internals: * support passing `--require=` multiple times * deprecated `WP_CLI::add_man_dir()` -You can also browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=10&state=closed) on GitHub. +You can also browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=10&state=closed) on Github. Contributors to this release: [dangardner](https://github.com/dangardner), [danielbachhuber](https://github.com/danielbachhuber), [eugeneware](https://github.com/eugeneware), [jmslbam](https://github.com/jmslbam), [johnbillion](https://github.com/johnbillion), [MiteshShah](https://github.com/MiteshShah), [om4james](https://github.com/om4james), [scribu](https://github.com/scribu), [twratajczak](https://github.com/twratajczak), [Veered](https://github.com/Veered). diff --git a/_posts/2013-08-08-version-0.11.1.md b/_posts/2013-08-08-version-0.11.1.md index fd6d60bb..a85f8253 100644 --- a/_posts/2013-08-08-version-0.11.1.md +++ b/_posts/2013-08-08-version-0.11.1.md @@ -20,6 +20,6 @@ Internals: * fixed synopsis parser bug where arguments with vertical bars would be ignored * added support for `WP_CLI_PHP_ARGS` environment variable -You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=15&state=closed) on GitHub. +You can also browse the list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=15&state=closed) on Github. Contributors to this release: [c10b10](https://github.com/c10b10), [jmslbam](https://github.com/jmslbam), [scribu](https://github.com/scribu). diff --git a/_posts/2013-10-04-version-0.12.md b/_posts/2013-10-04-version-0.12.md index af9d9043..bd5f180b 100644 --- a/_posts/2013-10-04-version-0.12.md +++ b/_posts/2013-10-04-version-0.12.md @@ -33,7 +33,7 @@ This nifty little parameter changes the behaviour of commands when required argu ### Phar archives are back -They were originally introduced in [version 0.9](https://wp-cli.org/blog/version-0.9.html) and... ahem, naively abandoned in the next release with the introduction of the installer script. +They were originally introduced in [version 0.9](http://wp-cli.org/blog/version-0.9.html) and... ahem, naively abandoned in the next release with the introduction of the installer script. The installer uses Composer, which has its own environmental requirements, but, more importantly, it has to fetch all of the packages WP-CLI depends on, which is both less reliable and slower than downloading a single file that contains everything. @@ -60,7 +60,7 @@ So, phar archives can be downloaded from the [wp-cli/builds](https://github.com/ * `wp plugin is-installed` and `wp theme is-installed` * `wp user add-cap`, `wp user remove-cap` and `wp user list-caps` -You can browse the full list of [resolved issues](https://github.com/WP-CLI/WP-CLI/issues?milestone=14&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/WP-CLI/WP-CLI/issues?milestone=14&state=closed) on Github. [1]: https://github.com/wp-cli/wp-cli/issues/792#issuecomment-25376430 [2]: https://github.com/wp-cli/wp-cli/pull/786 diff --git a/_posts/2013-10-11-version-0.12.1.md b/_posts/2013-10-11-version-0.12.1.md index 2c15fc59..e78eff00 100644 --- a/_posts/2013-10-11-version-0.12.1.md +++ b/_posts/2013-10-11-version-0.12.1.md @@ -11,6 +11,6 @@ Hot on the heels of the [0.12 release](/blog/version-0.12.html) comes a minor re * made the `--post__in=` parameter in `wp post list` work * added `--match=` argument for `wp rewrite list` + other improvements -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=18&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=18&page=1&state=closed) on Github. Contributors to this release: [danielbachhuber](https://github.com/danielbachhuber), [mattes](https://github.com/mattes), [scribu](https://github.com/scribu) diff --git a/_posts/2013-10-24-how-wp-cli-loads-wordpress.md b/_posts/2013-10-24-how-wp-cli-loads-wordpress.md index 21ab3374..bd8ee44a 100644 --- a/_posts/2013-10-24-how-wp-cli-loads-wordpress.md +++ b/_posts/2013-10-24-how-wp-cli-loads-wordpress.md @@ -15,7 +15,7 @@ She figures that if she manages to load the WP environment from a CLI script, th Shelly is pleased; her script even works on multisite installs. Both the host name and the path to the WordPress install are hardcoded, but she can figure ways around that later. -With her geeky curiosity satisfied, she lazily types in a Google search, to check if anyone else has solved this problem. The first result is a project called WP-CLI. She installs it and tries out a few commands - it seems to work pretty well. +With her geeky curiosity satisfied, she lazily types in a google search, to check if anyone else has solved this problem. The first result is a project called WP-CLI. She installs it and tries out a few commands - it seems to work pretty well. She then goes to the WP-CLI source and searches for 'wp-load.php', to see how it handles the WordPress bootstrapping - 0 results. Puzzled, she starts going through the first file that gets executed and eventually reaches one called `wp-setting-cli.php`. This strikes Shelly as peculiar, since she encountered a similar file in WordPress Core. She signs into the project's IRC channel. diff --git a/_posts/2013-11-30-version-0.13.md b/_posts/2013-11-30-version-0.13.md index 1a46306f..332f2390 100644 --- a/_posts/2013-11-30-version-0.13.md +++ b/_posts/2013-11-30-version-0.13.md @@ -32,7 +32,7 @@ We have simplified the process of [setting up and running plugin tests](https:// It fetches the test library from the new `develop.svn.wordpress.org` repository. -Also, the Travis build no longer depends on the GitHub mirror of WordPress. +Also, the Travis build no longer depends on the Github mirror of WordPress. ### Improved downloads @@ -72,6 +72,6 @@ Misc: * removed `wp core init-tests` command ([context](https://github.com/wp-cli/wp-cli/pull/885)) * renamed `WP_CLI::add_action()` to `WP_CLI::add_hook()` ([context](https://github.com/wp-cli/wp-cli/pull/845)) -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=19&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=19&page=1&state=closed) on Github. Contributors to this release: [BoiteAWeb](https://github.com/BoiteAWeb), [ctayloroomphinc](https://github.com/ctayloroomphinc), [danielbachhuber](https://github.com/danielbachhuber), [dd32](https://github.com/dd32), [francescolaffi](https://github.com/francescolaffi), [jonathanbardo](https://github.com/jonathanbardo), [Kevinlearynet](https://github.com/Kevinlearynet), [leewillis77](https://github.com/leewillis77), [nickdaugherty](https://github.com/nickdaugherty), [QWp6t](https://github.com/QWp6t), [rodrigoprimo](https://github.com/rodrigoprimo), [ryanduff](https://github.com/ryanduff), [scribu](https://github.com/scribu), [simonwheatley](https://github.com/simonwheatley), [tiagohillebrandt](https://github.com/tiagohillebrandt), [tlovett1](https://github.com/tlovett1), [wojsmol](https://github.com/wojsmol). diff --git a/_posts/2014-02-06-version-0.14.md b/_posts/2014-02-06-version-0.14.md index c3d1ae32..1005954b 100644 --- a/_posts/2014-02-06-version-0.14.md +++ b/_posts/2014-02-06-version-0.14.md @@ -16,7 +16,7 @@ To make this not-common-enough scenario work, we had to once again call upon the ### Protection against running as root -If you try to run a WP-CLI command as the superuser, WP-CLI will refuse to run. In production environments, most of the commands should actually be run under the same user as the web server. But, in general, running commands as root is a bad idea. +If you try to run a WP-CLI command as the superuser, WP-CLI will refuse to run. In production environemnts, most of the commands should actually be run under the same user as the web server. But, in general, running commands as root is a bad idea. For example, if you run `wp media regenerate` as `root`, then the newly created thumbnail files will naturally be owned by `root`. If the web server is running under the `www-data` user, it won't be able to change these files (unless they're globally writable, which is less secure). So, the correct command would be `sudo -u www-data wp media regenerate`. @@ -60,7 +60,7 @@ You can also skip only particular plugins: `wp --skip-plugins=admin-blocker,comp * fixed issue with progress bar calling `tput` too often * execution is now aborted if too many positional parameters are passed or if an unknown associative parameter is passed -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=20&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=20&state=closed) on Github. diff --git a/_posts/2014-04-15-version-0.15.md b/_posts/2014-04-15-version-0.15.md index 220146a3..4fa24565 100644 --- a/_posts/2014-04-15-version-0.15.md +++ b/_posts/2014-04-15-version-0.15.md @@ -50,7 +50,7 @@ Note that after updating `wp-cli.phar`, you will also have to update the [wp-com * `wp post create`: fixed handling of `--post_category=` parameter * `wp eval-file`: allow passing arbitrary arguments to the file -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=21&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=21&page=1&state=closed) on Github. Contributors to this release: [clemens-tolboom](https://github.com/clemens-tolboom), [danielbachhuber](https://github.com/danielbachhuber), [francescolaffi](https://github.com/francescolaffi), [itsananderson](https://github.com/itsananderson), [johnpbloch](https://github.com/johnpbloch), [mattheu](https://github.com/mattheu), [nyordanov](https://github.com/nyordanov), [Rarst](https://github.com/Rarst), [robertboloc](https://github.com/robertboloc), [rodrigoprimo](https://github.com/rodrigoprimo), [sboisvert](https://github.com/sboisvert), [scribu](https://github.com/scribu), [szepeviktor](https://github.com/szepeviktor), [trepmal](https://github.com/trepmal). diff --git a/_posts/2014-04-29-survey-results.md b/_posts/2014-04-29-survey-results.md index 9bb793c8..6a897566 100644 --- a/_posts/2014-04-29-survey-results.md +++ b/_posts/2014-04-29-survey-results.md @@ -16,20 +16,20 @@ Many thanks to the 56 people who took our first user survey. We appreciate your Even with its variety of commands, WP-CLI is largely used to install and update. 37.5% of respondents reported using WP-CLI to install WordPress (with 30.36% using it to update WordPress), and 32.14% reported using it to update plugins and themes. -After code management, WP-CLI is popularly used (23.21%) to perform migrations. Respondents reported using [`wp db export`](https://wp-cli.org/commands/db/export/) and [`wp db import`](https://wp-cli.org/commands/db/import/) in conjunction with [`wp search-replace`](https://wp-cli.org/commands/search-replace/), or [`wp export`](https://wp-cli.org/commands/export/) and [`wp import`](https://wp-cli.org/commands/import/). +After code management, WP-CLI is popularly used (23.21%) to perform migrations. Respondents reported using [`wp db export`](http://wp-cli.org/commands/db/export/) and [`wp db import`](http://wp-cli.org/commands/db/import/) in conjunction with [`wp search-replace`](http://wp-cli.org/commands/search-replace/), or [`wp export`](http://wp-cli.org/commands/export/) and [`wp import`](http://wp-cli.org/commands/import/). A subset of respondents reported using WP-CLI to perform specialized tasks, including: -* Creating users with [`wp user create`](https://wp-cli.org/commands/user/create/) and [`wp user import-csv`](https://wp-cli.org/commands/user/import-csv/). -* [Deleting options](https://wp-cli.org/commands/option/delete/). -* [Resizing images](https://wp-cli.org/commands/media/regenerate/). -* [Creating posts / pages](https://wp-cli.org/commands/post/create/). -* Quick code execution via [`wp eval`](https://wp-cli.org/commands/eval/), [`wp eval-file`](https://wp-cli.org/commands/eval-file/), and [`wp shell`](https://wp-cli.org/commands/shell/). +* Creating users with [`wp user create`](http://wp-cli.org/commands/user/create/) and [`wp user import-csv`](http://wp-cli.org/commands/user/import-csv/). +* [Deleting options](http://wp-cli.org/commands/option/delete/). +* [Resizing images](http://wp-cli.org/commands/media/regenerate/). +* [Creating posts / pages](http://wp-cli.org/commands/post/create/). +* Quick code execution via [`wp eval`](http://wp-cli.org/commands/eval/), [`wp eval-file`](http://wp-cli.org/commands/eval-file/), and [`wp shell`](http://wp-cli.org/commands/shell/). * [Writing custom commands](https://github.com/wp-cli/wp-cli/wiki/Commands-Cookbook). **Only 38% have used community packages** -WP-CLI now has 24 community packages listed in its [Package Index](https://wp-cli.org/package-index/). A good 62% percent of respondents will have the good fortune in the future to discover a helpful community package. +WP-CLI now has 24 community packages listed in its [Package Index](http://wp-cli.org/package-index/). A good 62% percent of respondents will have the good fortune in the future to discover a helpful community package. ### Feature requests diff --git a/_posts/2014-05-14-version-0.15.1.md b/_posts/2014-05-14-version-0.15.1.md index d31cdd2f..f1347a49 100644 --- a/_posts/2014-05-14-version-0.15.1.md +++ b/_posts/2014-05-14-version-0.15.1.md @@ -15,6 +15,6 @@ The longer 0.15 soaked, the more bug fixes it saw. It's finally time to get them * use WordPress' `_n()` instead of `ngettext()` * fix segmentation fault in PHP 5.5.11/12 (and probably other 5.5.x versions) -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=24&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=24&page=1&state=closed) on Github. Contributors to this release: [boonebgorges](https://github.com/boonebgorges), [danielbachhuber](https://github.com/danielbachhuber), [jmslbam](https://github.com/jmslbam), [mboynes](https://github.com/mboynes), [szepeviktor](https://github.com/szepeviktor), [westonruter](https://github.com/westonruter) diff --git a/_posts/2014-06-30-version-0.16.md b/_posts/2014-06-30-version-0.16.md index 7f714ce7..fdc0598b 100644 --- a/_posts/2014-06-30-version-0.16.md +++ b/_posts/2014-06-30-version-0.16.md @@ -61,7 +61,7 @@ If any core files have been modified, you'll see something like this: ### A new look -[WP-CLI.org](https://wp-cli.org) received a much-appreciated fresh coat of paint. [Share the love on Twitter](https://twitter.com/intent/tweet?text=Love%20the%20fresh%20coat%20of%20paint%2C%20%40wpcli%21%20Check%20it%20out%3A%20http%3A%2F%2Fwp-cli.org) (or report any bugs in the [issue tracker](https://github.com/wp-cli/wp-cli/issues/new)). +[WP-CLI.org](http://wp-cli.org) received a much-appreciated fresh coat of paint. [Share the love on Twitter](https://twitter.com/intent/tweet?text=Love%20the%20fresh%20coat%20of%20paint%2C%20%40wpcli%21%20Check%20it%20out%3A%20http%3A%2F%2Fwp-cli.org) (or report any bugs in the [issue tracker](https://github.com/wp-cli/wp-cli/issues/new)). ### Other changes @@ -83,6 +83,6 @@ Fixes: * Autocompletion file works properly for both bash and ZSH * `wp core update`: can update directly from a ZIP file -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=23&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=23&page=1&state=closed) on Github. Contributors to this release: [boonebgorges](https://github.com/boonebgorges), [danielbachhuber](https://github.com/danielbachhuber), [jmslbam](https://github.com/jmslbam), [johnbillion](https://github.com/johnbillion), [joshlevinson](https://github.com/joshlevinson), [mboynes](https://github.com/mboynes), [rodrigoprimo](https://github.com/rodrigoprimo), [ryanduff](https://github.com/ryanduff), [scribu](https://github.com/scribu), [szepeviktor](https://github.com/szepeviktor), [westonruter](https://github.com/westonruter) diff --git a/_posts/2014-09-11-version-0.17.md b/_posts/2014-09-11-version-0.17.md index 9a515d8e..c94e3214 100644 --- a/_posts/2014-09-11-version-0.17.md +++ b/_posts/2014-09-11-version-0.17.md @@ -105,6 +105,6 @@ Fixes: * GUIDs are escaped as URLs for `wp export`. * Thanks to improvements in php-cli-tools, long strings in tables will be wrapped, instead of breaking output. See in action with `wp theme get twentyfourteen`. -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=milestone%3A0.17.0+is%3Aclosed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=milestone%3A0.17.0+is%3Aclosed) on Github. Contributors to this release: [danielbachhuber](https://github.com/danielbachhuber), [dlh01](https://github.com/dlh01), [jeichorn](https://github.com/jeichorn), [johnbillion](https://github.com/johnbillion), [lkwdwrd](https://github.com/lkwdwrd), [mattheu](https://github.com/mattheu), [nschoenholtz](https://github.com/nschoenholtz), [phh](https://github.com/phh), [rodrigoprimo](https://github.com/rodrigoprimo), [santagada](https://github.com/santagada), [scribu](https://github.com/scribu), [szepeviktor](https://github.com/szepeviktor), [tddewey](https://github.com/tddewey), [tollmanz](https://github.com/tollmanz), [trepmal](https://github.com/trepmal), [willmot](https://github.com/willmot). diff --git a/_posts/2014-11-18-version-0.17.1.md b/_posts/2014-11-18-version-0.17.1.md index 9da1aa59..a4d0da4a 100644 --- a/_posts/2014-11-18-version-0.17.1.md +++ b/_posts/2014-11-18-version-0.17.1.md @@ -17,6 +17,6 @@ Consider yourself lucky there were less bugs in 0.17 than sugar ants in our kitc * Adds error handling to `Core_Command::_read()`, for when WordPress.org returns bad responses. * php-cli-tools v0.10.2: Fixes supplying empty array to `cli\Table`, and incorrect lengths for colorized strings in `cli\Table` -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=27&page=1&state=closed) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=27&page=1&state=closed) on Github. Contributors to this release: [borekb](https://github.com/borekb), [danielbachhuber](https://github.com/danielbachhuber), [szepeviktor](https://github.com/szepeviktor), [wturrell](https://github.com/wturrell) diff --git a/_posts/2015-06-20-version-0.19.2.md b/_posts/2015-06-20-version-0.19.2.md index 62ee0222..d9b3134b 100644 --- a/_posts/2015-06-20-version-0.19.2.md +++ b/_posts/2015-06-20-version-0.19.2.md @@ -4,7 +4,7 @@ author: danielbachhuber title: Version 0.19.2 released --- -Embarrassingly, [WP-CLI v0.19.1](https://wp-cli.org/blog/version-0.19.1.html) introduced another bug related to scaffolding plugin tests. More embarrassingly, it took me a full month to get around to fixing it. My apologies if you were bit by it. +Embarrassingly, [WP-CLI v0.19.1](http://wp-cli.org/blog/version-0.19.1.html) introduced another bug related to scaffolding plugin tests. More embarrassingly, it took me a full month to get around to fixing it. My apologies if you were bit by it. You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=31&page=1&state=closed) on Github. diff --git a/_posts/2015-08-26-version-0.20.0.md b/_posts/2015-08-26-version-0.20.0.md index ca759760..3e6285b4 100644 --- a/_posts/2015-08-26-version-0.20.0.md +++ b/_posts/2015-08-26-version-0.20.0.md @@ -36,7 +36,7 @@ Use `wp core verify-checksums` to make sure a given WordPress install has the co ### WP-API CLI -We [released v0.19.0](https://wp-cli.org/blog/version-0.19.0.html) with this statement: +We [released v0.19.0](http://wp-cli.org/blog/version-0.19.0.html) with this statement: > WP-API is days away from 2.0-beta1, and brings with it a powerful new interface to WordPress. In the near future, we’ll start exploring how WP-CLI can use WP-API internally. If all goes well, WP-CLI could see just one more 0.x.0 release before the big 1.0.0. @@ -48,7 +48,7 @@ There were a couple issues opened for "how do I do X?", which you might find hel # List plugins on each site in a network wp site list --field=url | xargs -n 1 -I % wp plugin list --url=% - + # Delete inactive plugins wp plugin delete $(wp plugin list --status=inactive --field=name) diff --git a/_posts/2015-10-14-version-0.20.2.md b/_posts/2015-10-14-version-0.20.2.md index 0ea6b0be..ead5ff9a 100644 --- a/_posts/2015-10-14-version-0.20.2.md +++ b/_posts/2015-10-14-version-0.20.2.md @@ -8,6 +8,6 @@ Since the beginning, `install-wp-tests.sh` (the setup script for plugin unit tes We've updated `install-wp-tests.sh` provided by WP-CLI to use an appropriately-tagged version of the WordPress testing framework. However, because `install-wp-tests.sh` is added to a plugin during the scaffolding process, plugin authors will need to update the plugin copy of the script to fix failing tests. We weren't able to get to the entire internet, but here are some plugins that have already been updated: [pantheon-systems/wp-native-php-sessions](https://github.com/pantheon-systems/wp-native-php-sessions/pull/20), [washingtonstateuniversity/WSUWP-Plugin-Color-Palette](https://github.com/washingtonstateuniversity/WSUWP-Plugin-Color-Palette/pull/5), [ethymos/delibera](https://github.com/ethymos/delibera/pull/45) -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=is%3Aclosed+milestone%3A0.20.2) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=is%3Aclosed+milestone%3A0.20.2) on Github. Contributors to this release: [danielbachhuber](https://github.com/danielbachhuber), [torounit](https://github.com/torounit) diff --git a/_posts/2015-10-30-version-0.20.3.md b/_posts/2015-10-30-version-0.20.3.md index c568503c..e7d3c987 100644 --- a/_posts/2015-10-30-version-0.20.3.md +++ b/_posts/2015-10-30-version-0.20.3.md @@ -4,12 +4,12 @@ author: danielbachhuber title: Version 0.20.3 released --- -WordPress 4.4 loads a few new files in `wp-settings.php` relating to oEmbed and the REST API. Because WP-CLI has a custom `wp-settings-cli.php` ([background](https://wp-cli.org/blog/how-wp-cli-loads-wordpress.html)), WP-CLI v0.20.3 is a compatibility release to load these new files. +WordPress 4.4 loads a few new files in `wp-settings.php` relating to oEmbed and the REST API. Because WP-CLI has a custom `wp-settings-cli.php` ([background](http://wp-cli.org/blog/how-wp-cli-loads-wordpress.html)), WP-CLI v0.20.3 is a compatibility release to load these new files. **Importantly, due to the nature of these changes, WP-CLI versions prior to 0.20.3 will be incompatible with WordPress 4.4.** -Stay tuned next week for WP-CLI v0.21.0 (which is also compatible with WordPress 4.4), the results of the [user survey](https://wp-cli.org/blog/user-survey-2015.html), and a special announcement. +Stay tuned next week for WP-CLI v0.21.0 (which is also compatible with WordPress 4.4), the results of the [user survey](http://wp-cli.org/blog/user-survey-2015.html), and a special announcement. -You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=is%3Aclosed+milestone%3A0.20.2) on GitHub. +You can browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?q=is%3Aclosed+milestone%3A0.20.2) on Github. Contributors to this release: [danielbachhuber](https://github.com/danielbachhuber), [kraftbj](https://github.com/kraftbj), [rmccue](https://github.com/rmccue) diff --git a/_posts/2015-11-04-version-0.21.0.md b/_posts/2015-11-04-version-0.21.0.md index 342b1195..f8e2e3ab 100644 --- a/_posts/2015-11-04-version-0.21.0.md +++ b/_posts/2015-11-04-version-0.21.0.md @@ -11,7 +11,7 @@ As many of you are aware of, I launched a Kickstarter campaign Monday night: [A But, I have an even more **important note** about supported WordPress versions: * WP-CLI v0.22.0 (the next release) will bump the minimum supported WordPress version from 3.5 to 3.7 ([background](https://github.com/wp-cli/wp-cli/issues/2134)). -* WP-CLI versions prior to 0.20.3 will be incompatible with WordPress 4.4 ([background](https://wp-cli.org/blog/version-0.20.3.html)). +* WP-CLI versions prior to 0.20.3 will be incompatible with WordPress 4.4 ([background](http://wp-cli.org/blog/version-0.20.3.html)). This important note may apply to you in some way -- please take action accordingly. @@ -24,7 +24,7 @@ For a while now, you've been able to run a WP-CLI command before WordPress loads See how `wp eval` makes use of `WP_CLI::get_runner()->load_wordpress()`: class Eval_Command extends WP_CLI_Command { - + /** * Execute arbitrary PHP code. * @@ -84,7 +84,7 @@ Make your own commands more helpful by including `WP_CLI::debug( $debug_message Enhancements: * Use `wp core update-db --network` to upgrade databases across an entire network; also improves verbosity for this command by providing the `from` and `to` database versions. -* Adds a `wp comment recount` command for recalculating a post's comment count. +* Adds a `wp comment recount` command for recalcuating a post's comment count. * Includes `wp taxonomy list`, `wp taxonomy get`, `wp post-type list` and `wp post-type get` for getting details about registered taxonomies and post types. * Use `--defer-term-counting` with `wp post update` or `wp post delete` to recalculate term count at the end of the operation for increased performance. * Returns a more useful error message when running `wp scaffold plugin-tests` with an invalid plugin slug. diff --git a/_posts/2015-11-23-versions-0.21.1-and-0.20.4.md b/_posts/2015-11-23-versions-0.21.1-and-0.20.4.md index 0be51db5..d4f3a492 100644 --- a/_posts/2015-11-23-versions-0.21.1-and-0.20.4.md +++ b/_posts/2015-11-23-versions-0.21.1-and-0.20.4.md @@ -4,7 +4,7 @@ author: danielbachhuber title: Versions 0.21.1 and 0.20.4 released --- -WordPress 4.4 loads a
-
-
-
-
-
+[](https://travis-ci.org/wp-cli/wp-cli) [](https://gemnasium.com/github.com/wp-cli/wp-cli) [](http://isitmaintained.com/project/wp-cli/wp-cli "Tempo médio para resolver um issue") [](http://isitmaintained.com/project/wp-cli/wp-cli "Percentual de issues ainda abertos")
-A versão estável mais recente é a [2.12.0](https://make.wordpress.org/cli/2025/05/07/wp-cli-v2-12-0-release-notes/). Para manter-se atualizado, siga [@wpcli no Twitter](https://twitter.com/wpcli) ou [assine nossa newsletter](https://make.wordpress.org/cli/subscribe/). [Leia nosso plano de ação](https://make.wordpress.org/cli/handbook/roadmap/) para uma visão geral do que está sendo planejado para próximas versões.
-
-[](https://github.com/wp-cli/wp-cli/actions/workflows/testing.yml) [](https://isitmaintained.com/project/wp-cli/wp-cli "Tempo médio para resolver um issue") [](https://isitmaintained.com/project/wp-cli/wp-cli "Percentual de issues ainda abertos")
-
-Links rápidos: [Usando](#usando) | [Instalando](#instalando) | [Suporte](#suporte) | [Estendendo](#estendendo) | [Contribuindo](#contribuindo) | [Créditos](#créditos)
+Links rápidos: [Usando](#usando) | [Instalando](#instalando) | [Suporte](#suporte) | [Extendendo](#extendendo) | [Contribuindo](#contribuindo) | [Créditos](#creditos)
## Usando
-O objetivo da WP-CLI é fornecer uma interface em linha de comando para muitas das ações que você pode executar na administração do WordPress. Por exemplo, `wp plugin install --activate` ([doc](https://developer.wordpress.org/cli/commands/plugin/install/)) permite a instalação e ativação de um plugin WordPress:
+O objetivo da WP-CLI é fornecer uma interface em linha de comando para qualquer ação que você queira executar na administração do WordPress. Por exemplo `wp plugin install --activate` ([doc](https://wp-cli.org/commands/plugin/install/)) permite a instação e ativação de um plugin WordPress:
```bash
-$ wp plugin install user-switching --activate
-Installing User Switching (1.0.9)
-Downloading installation package from https://downloads.wordpress.org/plugin/user-switching.1.0.9.zip...
+$ wp plugin install rest-api --activate
+Installing WordPress REST API (Version 2) (2.0-beta13)
+Downloading install package from https://downloads.wordpress.org/plugin/rest-api.2.0-beta13.zip...
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
-Activating 'user-switching'...
-Plugin 'user-switching' activated.
-Success: Installed 1 of 1 plugins.
+Activating 'rest-api'...
+Success: Plugin 'rest-api' activated.
```
-A WP-CLI também inclui muitos comandos para ações que não são possíveis através da administração do WordPress. Por exemplo, `wp transient delete --all` ([doc](https://developer.wordpress.org/cli/commands/transient/delete/)) permite excluir um ou todos os transients:
+WP-CLI também inclui muitos comandos para ações que não são possíveis através da administração do WordPress. Por exemplo, `wp transient delete --all` ([doc](https://wp-cli.org/commands/transient/delete-all/)) permite deletar uma ou todas as transients:
```bash
$ wp transient delete --all
Success: 34 transients deleted from the database.
```
-Para uma introdução mais completa sobre como usar a WP-CLI, leia o [Guia rápido](https://make.wordpress.org/cli/handbook/quick-start/). Veja também os [shell friends](https://make.wordpress.org/cli/handbook/shell-friends/) para saber mais sobre utilitários de linha de comando.
+Para uma introdução mais completa sobre como usar a WP-CLI, leia o [Guia rápido](https://wp-cli.org/docs/quick-start/).
-Já se sente confortável com o básico? Vá para a [lista completa de comandos](https://developer.wordpress.org/cli/commands/) para informações detalhadas sobre gerenciamento de temas e plugins, importação e exportação de dados, operações de busca e substituição no banco de dados e muito mais.
+Já se sente confortável com o básico? Vá para a [lista completa de comandos](https://wp-cli.org/commands/) para obter informações detalhadas na gestão de temas e plugins, importação e exportação de dados, operações de busca e substituição no banco de dados e muito mais.
## Instalando
-Baixar o arquivo Phar é o método de instalação que recomendamos para a maioria dos usuários. Caso precise, veja também a documentação sobre [métodos alternativos de instalação](https://make.wordpress.org/cli/handbook/installing/) ([Composer](https://make.wordpress.org/cli/handbook/installing/#installing-via-composer), [Homebrew](https://make.wordpress.org/cli/handbook/installing/#installing-via-homebrew), [Docker](https://make.wordpress.org/cli/handbook/installing/#installing-via-docker)).
+Realizar o download do arquivo Phar é o método de instalação que recomendamos. Caso precise, nossa documentação para [métodos alternativos de instação](https://wp-cli.org/docs/installing/).
-Antes de instalar a WP-CLI, tenha certeza de que seu ambiente cumpre os requisitos mínimos:
+Antes instalar a WP-CLI, certifique-se que seu ambiente possua os requesitos mínimos:
- Ambiente UNIX-like (OS X, Linux, FreeBSD, Cygwin); suporte limitado para ambientes Windows
-- PHP 5.6 ou superior
-- WordPress 3.7 ou superior. Versões do WordPress anteriores à mais recente podem ter funcionalidade reduzida
+- PHP 5.3.29 ou superior
+- WordPress 3.7 ou superior
-Após verificar os requisitos, baixe o arquivo [wp-cli.phar](https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) usando `wget` ou `curl`:
+Após verificar os requesitos, faça o download do arquivo [wp-cli.phar](https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) usando `wget` ou `curl`:
```bash
-curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
+$ curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
```
-Em seguida, verifique se o arquivo phar está funcionando:
+Em seguida, verifique se está funcionando:
```bash
-php wp-cli.phar --info
+$ php wp-cli.phar --info
```
-Para usar a WP-CLI na linha de comando usando apenas `wp`, torne o arquivo executável e mova-o para algum diretório presente em sua variável de ambiente PATH. Por exemplo:
+Digite `wp` para utilizar WP-CLI a partir da linha de comando, torne o arquivo executável e mova-o para algum diretório presente em sua variável de ambiente PATH. For example:
```bash
-chmod +x wp-cli.phar
-sudo mv wp-cli.phar /usr/local/bin/wp
+$ chmod +x wp-cli.phar
+$ sudo mv wp-cli.phar /usr/local/bin/wp
```
-Se a WP-CLI foi instalada corretamente, ao executar `wp --info` você deverá ver algo como:
+Se WP-CLI foi instalado com sucesso, ao executar `wp --info` você deverá ver algo como:
```bash
$ wp --info
-OS: Linux 4.19.128-microsoft-standard #1 SMP Tue Jun 23 12:58:10 UTC 2020 x86_64
-Shell: /usr/bin/zsh
-PHP binary: /usr/bin/php
-PHP version: 8.0.5
-php.ini used: /etc/php/8.0/cli/php.ini
-MySQL binary: /usr/bin/mysql
-MySQL version: mysql Ver 8.0.23-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
-SQL modes:
-WP-CLI root dir: /home/wp-cli/
-WP-CLI vendor dir: /home/wp-cli/vendor
-WP_CLI phar path:
+PHP binary: /usr/bin/php5
+PHP version: 5.5.9-1ubuntu4.14
+php.ini used: /etc/php5/cli/php.ini
+WP-CLI root dir: /home/wp-cli/.wp-cli
WP-CLI packages dir: /home/wp-cli/.wp-cli/packages/
-WP-CLI global config:
-WP-CLI project config: /home/wp-cli/wp-cli.yml
-WP-CLI version: 2.12.0
+WP-CLI global config: /home/wp-cli/.wp-cli/config.yml
+WP-CLI project config:
+WP-CLI version: 0.23.0
```
### Atualizando
-WP-CLI pode ser atualizada com `wp cli update` ([doc](https://developer.wordpress.org/cli/commands/cli/update/)) ou repetindo os passos da instalação.
-
-Se o proprietário do arquivo da WP-CLI for root ou outro usuário do sistema, será necessário executar `sudo wp cli update`.
+WP-CLI pode ser atualizado com `wp cli update` ([doc](https://wp-cli.org/commands/cli/update/)), ou repetindo os passos da instalação.
-Quer viver no limite? Execute `wp cli update --nightly` para usar a última compilação de desenvolvimento da WP-CLI. Essa versão é estável o suficiente para ser usada em seu ambiente de desenvolvimento e sempre inclui as melhores e mais recentes funcionalidades da WP-CLI.
+_Quer viver a vida no limite?_ Execute `wp cli update --nightly` para usar a última compilação de desenvolvimento da WP-CLI. Essa versão é bastante estável para utilizar em seu ambiente de desenvolvimento, e sempre inclui as melhores e mais atuais funcionalidades da WP-CLI.
-### Autocompletar com tab
+### Auto-completar
-A WP-CLI também possui scripts de autocompletar para Bash ou ZSH. Baixe [wp-completion.bash](https://raw.githubusercontent.com/wp-cli/wp-cli/v2.12.0/utils/wp-completion.bash) e carregue-o através do `~/.bash_profile`:
+WP-CLI também acompanha scripts de auto-completar para Bash ou ZSH. Faça o download [wp-completion.bash](https://github.com/wp-cli/wp-cli/raw/master/utils/wp-completion.bash) e carregue o arquivo para `~/.bash_profile`:
```bash
source /FULL/PATH/TO/wp-completion.bash
@@ -116,42 +96,26 @@ source /FULL/PATH/TO/wp-completion.bash
Não se esqueça de executar `source ~/.bash_profile` em seguida.
-Se estiver usando zsh como shell, pode ser necessário carregar e iniciar `bashcompinit` antes de carregá-lo. Inclua o seguinte no seu `.zshrc`:
-
-```bash
-autoload bashcompinit
-bashcompinit
-source /FULL/PATH/TO/wp-completion.bash
-```
-
## Suporte
-Os responsáveis e os colaboradores da WP-CLI possuem disponibilidade limitada para atender a questões gerais de suporte. A [versão atual da WP-CLI](https://make.wordpress.org/cli/handbook/roadmap/) é a única com suporte oficial.
-
-Ao procurar por suporte, pesquise primeiro por sua dúvida nas fontes abaixo:
+Os colaboradores do projeto WP-CLI fazem seu melhor para rsponder a todos os problemas assim que possível. Para que possamos fazer melhor uso do tempo dos voluntários, verifique se já existe uma resposta para sua pergunta em umas das fontes abaixo:
-* [Questões comuns e suas respostas](https://make.wordpress.org/cli/handbook/common-issues/)
-* [Manual da WP-CLI](https://make.wordpress.org/cli/handbook/)
-* [Questões abertas ou fechadas no GitHub da WP-CLI](https://github.com/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+org%3Awp-cli+is%3Aissue)
-* [Tópicos com a tag 'WP-CLI' no fórum de suporte do WordPress.org](https://wordpress.org/support/topic-tag/wp-cli/)
-* [Questões com a tag 'WP-CLI' no WordPress StackExchange](https://wordpress.stackexchange.com/questions/tagged/wp-cli)
+- [Questões comuns e suas respostas](https://wp-cli.org/docs/common-issues/)
+- [Melhores práticas para informar um problema](https://wp-cli.org/docs/bug-reports/)
+- [Portal de documentação](https://wp-cli.org/docs/)
+- [Questões abertas ou fechadas no Github](https://github.com/wp-cli/wp-cli/issues?utf8=%E2%9C%93&q=is%3Aissue)
+- [Forum WordPress no StackExchange](http://wordpress.stackexchange.com/questions/tagged/wp-cli)
-Se você não encontrou uma resposta em nenhum dos endereços acima, você pode:
+Caso não encontre uma resposta na fontes existentes, fique a vontade para [abrir uma questão](https://github.com/wp-cli/wp-cli/issues/new) com sua dúvida.
-* Entrar para o canal `#cli` no [Slack Internacional do WordPress.org](https://make.wordpress.org/chat/) para conversar com quem estiver disponível no momento. Esta opção é a melhor para perguntas rápidas.
-* [Criar um novo tópico](https://wordpress.org/support/forum/wp-advanced/#new-post) no fórum internacional do WordPress.org e colocar a tag 'WP-CLI' para que ele seja encontrado pela comunidade.
+Se você possui uma conta WordPress.org, considere se inscrever no canal `#cli` no [Slack do WordPress.org](https://make.wordpress.org/chat/).
-Issues do GitHub são usadas para acompanhar melhorias e erros dos comandos existentes, não para suporte em geral. Antes de informar um erro, veja [nossas boas práticas](https://make.wordpress.org/cli/handbook/bug-reports/) para que o problema possa ser resolvido em tempo hábil.
+## Extendendo
-Não faça perguntas de suporte no Twitter. O Twitter não é um lugar aceitável para suporte porque: 1) é difícil conversar com apenas 280 caracteres e 2) o Twitter não é um lugar onde alguém com a mesma pergunta possa procurar por uma resposta de uma conversa anterior.
+Um **commando** é uma unidade singular de uma funcionalidade WP-CLI. `wp plugin install` ([doc](https://wp-cli.org/commands/plugin/install/)) é um comando. `wp plugin activate` ([doc](https://wp-cli.org/commands/plugin/activate/)) é outro.
-Lembre-se: libre != gratis; A licença do código aberto dá para você a liberdade de usar e modificar, mas não gera compromissos com o tempo dos outros. Seja respeitoso e regule suas expectativas.
+A WP-CLI suporta o registro de qualquer classe ou função como um comando, lendo os detalhes de uso através de _PHPdoc Callback_. `WP_CLI::add_command()` ([doc](https://wp-cli.org/docs/internal-api/wp-cli-add-command/)) é utilizado para registo de comandos internos e de terceiros.
-## Estendendo
-
-Um **comando** é a unidade atômica de funcionalidade da WP-CLI. `wp plugin install` ([doc](https://developer.wordpress.org/cli/commands/plugin/install/)) é um comando. `wp plugin activate` ([doc](https://developer.wordpress.org/cli/commands/plugin/activate/)) é outro.
-
-A WP-CLI suporta o registro de qualquer classe ou função como um comando. Ela lê os detalhes de uso através do callback do PHPdoc. `WP_CLI::add_command()` ([doc](https://make.wordpress.org/cli/handbook/internal-api/wp-cli-add-command/)) é usado para registo de comandos internos e de terceiros.
```php
/**
@@ -181,31 +145,36 @@ $delete_option_cmd = function( $args ) {
WP_CLI::add_command( 'option delete', $delete_option_cmd );
```
-A WP-CLI vem com vários comandos. Criar um comando personalizado para WP-CLI é mais fácil do que parece. Leia o [livro de receitas de comandos](https://make.wordpress.org/cli/handbook/commands-cookbook/) para saber mais. Navegue pela [documentação de API interna](https://make.wordpress.org/cli/handbook/internal-api/) para descobrir umaa variedade de funções úteis que você pode utilizar no seu comando personalizado para WP-CLI.
+WP-CLI vem com muitos comandos. Criar um comando personalizado para WP-CLi é mais fácil do que parece. Leia o [livro de receitas de comandos](https://wp-cli.org/docs/commands-cookbook/) para aprender mais. Procure a [documentação de API interna](https://wp-cli.org/docs/internal-api/) para descobrir a variedade de funcionalidades úteis que você pode utilizar no seu comando personalizado para WP-CLI.
## Contribuindo
-Nós agradecemos sua iniciativa em contribuir com a WP-CLI. É por sua causa, e pela comunidade à sua volta, que a WP-CLI é um projeto tão legal.
+Seja bem vindo e obrigado!
+
+Nós agradecemos sua iniciativa em contribuir com a WP-CLI. É por sua causa e a comunidade a sua volta, que a WP-CLI se tornou um grande projeto.
-**Contribuir não é limitado somente a código.** Nós encorajamos você a contribuir da maneira que melhor se encaixar em suas habilidades, escrevendo tutoriais, com demonstrações em meetups locais, ajudando outros usuários respondendo suas dúvidas no fórum ou revisando nossa documentação.
+**Contribuir não é limitado a somente código.** Te encorajamos a contribuir da maneira que melhor se encaixe em suas habilidades, escrevendo tutoriais, com demonstrações em palestras locais, ajudar outros usuários respondendo suas dúvidas no suporte, ou revisando nossa documentação.
-No manual, dê uma olhada nas nossas [diretrizes para contribuir](https://make.wordpress.org/cli/handbook/contributing/) para uma introdução completa sobre como participar. Seguir esses passos ajuda a passar a ideia de que você respeita o tempo dos outros colaboradores. Por sua vez, eles farão o melhor para retribuir esse respeito ao trabalhar com você, nos diferentes fusos horários, em todo o mundo.
+De uma olhada com atenção [nesse guia](https://wp-cli.org/docs/contributing/). Seguindo esses passos você estará respeitando o tempo dos outros colaboradoes. Por sua vez, eles farão o melhor para retribuir esse respeito no trabalho com você, nos diferentes fusos horários e em todo o mundo.
-## Liderança
+## Criadores e liderança
-A WP-CLI tem um responsável pelo projeto: [schlessera](https://github.com/schlessera).
+WP-CLI foi criado e mantido por:
-Quando necessário, [damos permissão de escrita para colaboradores](https://make.wordpress.org/cli/handbook/committers-credo/) que demonstraram sua capacidade durante algum tempo e que se esforçaram para levar o projeto adiante.
+* [Daniel Bachhuber](https://github.com/danielbachhuber/) - Líder atual
+* [Cristi Burcă](https://github.com/scribu) - Líder anterior
+* [Andreas Creten](https://github.com/andreascreten) - Criador
-Leia o [documento sobre governança no manual](https://make.wordpress.org/cli/handbook/governance/) para mais detalhes operacionais do projeto.
+Saiba mais sobre os projetos de [governança](https://wp-cli.org/docs/governance/) e veja a [lista completa dos colaboradores](https://github.com/wp-cli/wp-cli/contributors).
## Créditos
+
-Além das bibliotecas especificadas em [composer.json](/composer.json), usamos código ou ideias dos projetos abaixos:
+Além das bibliotecas especificadas em [composer.json](/composer.json), utilizamos o código ou idéias dos projetos abaixos:
-* [Drush](https://github.com/drush-ops/drush) para... muitas coisas
-* [wpshell](https://code.trac.wordpress.org/browser/wpshell) para `wp shell`
-* [Regenerate Thumbnails](https://wordpress.org/plugins/regenerate-thumbnails/) para `wp media regenerate`
+* [Drush](http://drush.ws/) para... muitas coisas
+* [wpshell](http://code.trac.wordpress.org/browser/wpshell) para `wp shell`
+* [Regenerate Thumbnails](http://wordpress.org/plugins/regenerate-thumbnails/) para `wp media regenerate`
* [Search-Replace-DB](https://github.com/interconnectit/Search-Replace-DB) para `wp search-replace`
* [WordPress-CLI-Exporter](https://github.com/Automattic/WordPress-CLI-Exporter) para `wp export`
* [WordPress-CLI-Importer](https://github.com/Automattic/WordPress-CLI-Importer) para `wp import`
diff --git a/commands/blog/create/index.md b/commands/blog/create/index.md
deleted file mode 100644
index 3502b1a0..00000000
--- a/commands/blog/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/create/
----
\ No newline at end of file
diff --git a/commands/blog/delete/index.md b/commands/blog/delete/index.md
deleted file mode 100644
index 312f171c..00000000
--- a/commands/blog/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/delete/
----
\ No newline at end of file
diff --git a/commands/blog/empty/index.md b/commands/blog/empty/index.md
deleted file mode 100644
index 3017c434..00000000
--- a/commands/blog/empty/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/empty/
----
\ No newline at end of file
diff --git a/commands/blog/index.md b/commands/blog/index.md
deleted file mode 100644
index 39ca96ed..00000000
--- a/commands/blog/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/
----
\ No newline at end of file
diff --git a/commands/cache/add/index.md b/commands/cache/add/index.md
deleted file mode 100644
index 8e39e41b..00000000
--- a/commands/cache/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/add/
----
\ No newline at end of file
diff --git a/commands/cache/decr/index.md b/commands/cache/decr/index.md
deleted file mode 100644
index 2601c83f..00000000
--- a/commands/cache/decr/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/decr/
----
\ No newline at end of file
diff --git a/commands/cache/delete/index.md b/commands/cache/delete/index.md
deleted file mode 100644
index 2b321377..00000000
--- a/commands/cache/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/delete/
----
\ No newline at end of file
diff --git a/commands/cache/flush/index.md b/commands/cache/flush/index.md
deleted file mode 100644
index 7063e12c..00000000
--- a/commands/cache/flush/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/flush/
----
\ No newline at end of file
diff --git a/commands/cache/get/index.md b/commands/cache/get/index.md
deleted file mode 100644
index 5fcfebff..00000000
--- a/commands/cache/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/get/
----
\ No newline at end of file
diff --git a/commands/cache/incr/index.md b/commands/cache/incr/index.md
deleted file mode 100644
index 3cc26adc..00000000
--- a/commands/cache/incr/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/incr/
----
\ No newline at end of file
diff --git a/commands/cache/index.md b/commands/cache/index.md
deleted file mode 100644
index a08cf894..00000000
--- a/commands/cache/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/
----
\ No newline at end of file
diff --git a/commands/cache/replace/index.md b/commands/cache/replace/index.md
deleted file mode 100644
index 920bf711..00000000
--- a/commands/cache/replace/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/replace/
----
\ No newline at end of file
diff --git a/commands/cache/set/index.md b/commands/cache/set/index.md
deleted file mode 100644
index 28c99103..00000000
--- a/commands/cache/set/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/set/
----
\ No newline at end of file
diff --git a/commands/cache/type/index.md b/commands/cache/type/index.md
deleted file mode 100644
index 0ed8cc83..00000000
--- a/commands/cache/type/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cache/type/
----
\ No newline at end of file
diff --git a/commands/cap/add/index.md b/commands/cap/add/index.md
deleted file mode 100644
index 9ec05e62..00000000
--- a/commands/cap/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cap/add/
----
\ No newline at end of file
diff --git a/commands/cap/index.md b/commands/cap/index.md
deleted file mode 100644
index 9a3cd08f..00000000
--- a/commands/cap/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cap/
----
\ No newline at end of file
diff --git a/commands/cap/list/index.md b/commands/cap/list/index.md
deleted file mode 100644
index cadf22f5..00000000
--- a/commands/cap/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cap/list/
----
\ No newline at end of file
diff --git a/commands/cap/remove/index.md b/commands/cap/remove/index.md
deleted file mode 100644
index a88a4f31..00000000
--- a/commands/cap/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cap/remove/
----
\ No newline at end of file
diff --git a/commands/cli/alias/index.md b/commands/cli/alias/index.md
deleted file mode 100644
index 9a2df749..00000000
--- a/commands/cli/alias/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/alias/
----
\ No newline at end of file
diff --git a/commands/cli/check-update/index.md b/commands/cli/check-update/index.md
deleted file mode 100644
index 6e7af947..00000000
--- a/commands/cli/check-update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/check-update/
----
\ No newline at end of file
diff --git a/commands/cli/cmd-dump/index.md b/commands/cli/cmd-dump/index.md
deleted file mode 100644
index 0b6dcf46..00000000
--- a/commands/cli/cmd-dump/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/cmd-dump/
----
\ No newline at end of file
diff --git a/commands/cli/completions/index.md b/commands/cli/completions/index.md
deleted file mode 100644
index aaf88f6e..00000000
--- a/commands/cli/completions/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/completions/
----
\ No newline at end of file
diff --git a/commands/cli/index.md b/commands/cli/index.md
deleted file mode 100644
index 030254ae..00000000
--- a/commands/cli/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/
----
\ No newline at end of file
diff --git a/commands/cli/info/index.md b/commands/cli/info/index.md
deleted file mode 100644
index 1aea9db2..00000000
--- a/commands/cli/info/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/info/
----
\ No newline at end of file
diff --git a/commands/cli/param-dump/index.md b/commands/cli/param-dump/index.md
deleted file mode 100644
index ceb354b3..00000000
--- a/commands/cli/param-dump/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/param-dump/
----
\ No newline at end of file
diff --git a/commands/cli/update/index.md b/commands/cli/update/index.md
deleted file mode 100644
index f1f62e51..00000000
--- a/commands/cli/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/update/
----
\ No newline at end of file
diff --git a/commands/cli/version/index.md b/commands/cli/version/index.md
deleted file mode 100644
index e639b203..00000000
--- a/commands/cli/version/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cli/version/
----
\ No newline at end of file
diff --git a/commands/comment/approve/index.md b/commands/comment/approve/index.md
deleted file mode 100644
index ff2d7673..00000000
--- a/commands/comment/approve/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/approve/
----
\ No newline at end of file
diff --git a/commands/comment/count/index.md b/commands/comment/count/index.md
deleted file mode 100644
index 9a7e66f5..00000000
--- a/commands/comment/count/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/count/
----
\ No newline at end of file
diff --git a/commands/comment/create/index.md b/commands/comment/create/index.md
deleted file mode 100644
index ca315bf5..00000000
--- a/commands/comment/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/create/
----
\ No newline at end of file
diff --git a/commands/comment/delete/index.md b/commands/comment/delete/index.md
deleted file mode 100644
index 9a5c9c4f..00000000
--- a/commands/comment/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/delete/
----
\ No newline at end of file
diff --git a/commands/comment/exists/index.md b/commands/comment/exists/index.md
deleted file mode 100644
index 94f93bb4..00000000
--- a/commands/comment/exists/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/exists/
----
\ No newline at end of file
diff --git a/commands/comment/generate/index.md b/commands/comment/generate/index.md
deleted file mode 100644
index 39debe61..00000000
--- a/commands/comment/generate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/generate/
----
\ No newline at end of file
diff --git a/commands/comment/get/index.md b/commands/comment/get/index.md
deleted file mode 100644
index 63ca9405..00000000
--- a/commands/comment/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/get/
----
\ No newline at end of file
diff --git a/commands/comment/index.md b/commands/comment/index.md
deleted file mode 100644
index c1b96fc4..00000000
--- a/commands/comment/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/
----
\ No newline at end of file
diff --git a/commands/comment/list/index.md b/commands/comment/list/index.md
deleted file mode 100644
index 316c0dcf..00000000
--- a/commands/comment/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/list/
----
\ No newline at end of file
diff --git a/commands/comment/meta/add/index.md b/commands/comment/meta/add/index.md
deleted file mode 100644
index edb127d4..00000000
--- a/commands/comment/meta/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/add/
----
\ No newline at end of file
diff --git a/commands/comment/meta/delete/index.md b/commands/comment/meta/delete/index.md
deleted file mode 100644
index 0f699649..00000000
--- a/commands/comment/meta/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/delete/
----
\ No newline at end of file
diff --git a/commands/comment/meta/get/index.md b/commands/comment/meta/get/index.md
deleted file mode 100644
index 6458617e..00000000
--- a/commands/comment/meta/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/get/
----
\ No newline at end of file
diff --git a/commands/comment/meta/index.md b/commands/comment/meta/index.md
deleted file mode 100644
index b5c7ea6b..00000000
--- a/commands/comment/meta/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/
----
\ No newline at end of file
diff --git a/commands/comment/meta/list/index.md b/commands/comment/meta/list/index.md
deleted file mode 100644
index f9a62856..00000000
--- a/commands/comment/meta/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/list/
----
\ No newline at end of file
diff --git a/commands/comment/meta/update/index.md b/commands/comment/meta/update/index.md
deleted file mode 100644
index e6748ec3..00000000
--- a/commands/comment/meta/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/meta/update/
----
\ No newline at end of file
diff --git a/commands/comment/recount/index.md b/commands/comment/recount/index.md
deleted file mode 100644
index f1395902..00000000
--- a/commands/comment/recount/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/recount/
----
\ No newline at end of file
diff --git a/commands/comment/spam/index.md b/commands/comment/spam/index.md
deleted file mode 100644
index a0c34585..00000000
--- a/commands/comment/spam/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/spam/
----
\ No newline at end of file
diff --git a/commands/comment/status/index.md b/commands/comment/status/index.md
deleted file mode 100644
index 9f1c5e3f..00000000
--- a/commands/comment/status/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/status/
----
\ No newline at end of file
diff --git a/commands/comment/trash/index.md b/commands/comment/trash/index.md
deleted file mode 100644
index d6489354..00000000
--- a/commands/comment/trash/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/trash/
----
\ No newline at end of file
diff --git a/commands/comment/unapprove/index.md b/commands/comment/unapprove/index.md
deleted file mode 100644
index 5006dfb3..00000000
--- a/commands/comment/unapprove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/unapprove/
----
\ No newline at end of file
diff --git a/commands/comment/unspam/index.md b/commands/comment/unspam/index.md
deleted file mode 100644
index 115f0194..00000000
--- a/commands/comment/unspam/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/unspam/
----
\ No newline at end of file
diff --git a/commands/comment/untrash/index.md b/commands/comment/untrash/index.md
deleted file mode 100644
index 623aec36..00000000
--- a/commands/comment/untrash/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/untrash/
----
\ No newline at end of file
diff --git a/commands/comment/update/index.md b/commands/comment/update/index.md
deleted file mode 100644
index 735eefde..00000000
--- a/commands/comment/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/comment/update/
----
\ No newline at end of file
diff --git a/commands/core/check-update/index.md b/commands/core/check-update/index.md
deleted file mode 100644
index e140a369..00000000
--- a/commands/core/check-update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/check-update/
----
\ No newline at end of file
diff --git a/commands/core/config/index.md b/commands/core/config/index.md
deleted file mode 100644
index 8549546c..00000000
--- a/commands/core/config/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/config/
----
\ No newline at end of file
diff --git a/commands/core/download/index.md b/commands/core/download/index.md
deleted file mode 100644
index 6647a311..00000000
--- a/commands/core/download/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/download/
----
\ No newline at end of file
diff --git a/commands/core/index.md b/commands/core/index.md
deleted file mode 100644
index f66842ad..00000000
--- a/commands/core/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/
----
\ No newline at end of file
diff --git a/commands/core/install-network/index.md b/commands/core/install-network/index.md
deleted file mode 100644
index 8f496b90..00000000
--- a/commands/core/install-network/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/install-network/
----
\ No newline at end of file
diff --git a/commands/core/install/index.md b/commands/core/install/index.md
deleted file mode 100644
index df7a3a4e..00000000
--- a/commands/core/install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/install/
----
\ No newline at end of file
diff --git a/commands/core/is-installed/index.md b/commands/core/is-installed/index.md
deleted file mode 100644
index 42222529..00000000
--- a/commands/core/is-installed/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/is-installed/
----
\ No newline at end of file
diff --git a/commands/core/language/activate/index.md b/commands/core/language/activate/index.md
deleted file mode 100644
index 381a62fc..00000000
--- a/commands/core/language/activate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/activate/
----
\ No newline at end of file
diff --git a/commands/core/language/index.md b/commands/core/language/index.md
deleted file mode 100644
index 49fd5b91..00000000
--- a/commands/core/language/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/
----
\ No newline at end of file
diff --git a/commands/core/language/install/index.md b/commands/core/language/install/index.md
deleted file mode 100644
index 351f9981..00000000
--- a/commands/core/language/install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/install/
----
\ No newline at end of file
diff --git a/commands/core/language/list/index.md b/commands/core/language/list/index.md
deleted file mode 100644
index fdcf14d7..00000000
--- a/commands/core/language/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/list/
----
\ No newline at end of file
diff --git a/commands/core/language/uninstall/index.md b/commands/core/language/uninstall/index.md
deleted file mode 100644
index 3f3af547..00000000
--- a/commands/core/language/uninstall/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/uninstall/
----
\ No newline at end of file
diff --git a/commands/core/language/update/index.md b/commands/core/language/update/index.md
deleted file mode 100644
index c9b24b05..00000000
--- a/commands/core/language/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/language/update/
----
\ No newline at end of file
diff --git a/commands/core/multisite-convert/index.md b/commands/core/multisite-convert/index.md
deleted file mode 100644
index ae58e516..00000000
--- a/commands/core/multisite-convert/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/multisite-convert/
----
\ No newline at end of file
diff --git a/commands/core/multisite-install/index.md b/commands/core/multisite-install/index.md
deleted file mode 100644
index 24524dd4..00000000
--- a/commands/core/multisite-install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/multisite-install/
----
\ No newline at end of file
diff --git a/commands/core/update-db/index.md b/commands/core/update-db/index.md
deleted file mode 100644
index 3a1b2654..00000000
--- a/commands/core/update-db/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/update-db/
----
\ No newline at end of file
diff --git a/commands/core/update/index.md b/commands/core/update/index.md
deleted file mode 100644
index e3e875bb..00000000
--- a/commands/core/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/update/
----
\ No newline at end of file
diff --git a/commands/core/verify-checksums/index.md b/commands/core/verify-checksums/index.md
deleted file mode 100644
index f9cbb898..00000000
--- a/commands/core/verify-checksums/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/verify-checksums/
----
\ No newline at end of file
diff --git a/commands/core/version/index.md b/commands/core/version/index.md
deleted file mode 100644
index f872eb73..00000000
--- a/commands/core/version/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/core/version/
----
\ No newline at end of file
diff --git a/commands/cron/event/delete/index.md b/commands/cron/event/delete/index.md
deleted file mode 100644
index 4b18d472..00000000
--- a/commands/cron/event/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/event/delete/
----
\ No newline at end of file
diff --git a/commands/cron/event/index.md b/commands/cron/event/index.md
deleted file mode 100644
index 37737729..00000000
--- a/commands/cron/event/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/event/
----
\ No newline at end of file
diff --git a/commands/cron/event/list/index.md b/commands/cron/event/list/index.md
deleted file mode 100644
index 1bc661af..00000000
--- a/commands/cron/event/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/event/list/
----
\ No newline at end of file
diff --git a/commands/cron/event/run/index.md b/commands/cron/event/run/index.md
deleted file mode 100644
index a5e53006..00000000
--- a/commands/cron/event/run/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/event/run/
----
\ No newline at end of file
diff --git a/commands/cron/event/schedule/index.md b/commands/cron/event/schedule/index.md
deleted file mode 100644
index f817198b..00000000
--- a/commands/cron/event/schedule/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/event/schedule/
----
\ No newline at end of file
diff --git a/commands/cron/index.md b/commands/cron/index.md
deleted file mode 100644
index ab003276..00000000
--- a/commands/cron/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/
----
\ No newline at end of file
diff --git a/commands/cron/schedule/index.md b/commands/cron/schedule/index.md
deleted file mode 100644
index 1d0728c2..00000000
--- a/commands/cron/schedule/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/schedule/
----
\ No newline at end of file
diff --git a/commands/cron/schedule/list/index.md b/commands/cron/schedule/list/index.md
deleted file mode 100644
index 88ba00e3..00000000
--- a/commands/cron/schedule/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/schedule/list/
----
\ No newline at end of file
diff --git a/commands/cron/test/index.md b/commands/cron/test/index.md
deleted file mode 100644
index d14bef75..00000000
--- a/commands/cron/test/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/cron/test/
----
\ No newline at end of file
diff --git a/commands/db/check/index.md b/commands/db/check/index.md
deleted file mode 100644
index 836e72bb..00000000
--- a/commands/db/check/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/check/
----
\ No newline at end of file
diff --git a/commands/db/cli/index.md b/commands/db/cli/index.md
deleted file mode 100644
index 3e83634c..00000000
--- a/commands/db/cli/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/cli/
----
\ No newline at end of file
diff --git a/commands/db/create/index.md b/commands/db/create/index.md
deleted file mode 100644
index c502d99b..00000000
--- a/commands/db/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/create/
----
\ No newline at end of file
diff --git a/commands/db/drop/index.md b/commands/db/drop/index.md
deleted file mode 100644
index 69957c56..00000000
--- a/commands/db/drop/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/drop/
----
\ No newline at end of file
diff --git a/commands/db/export/index.md b/commands/db/export/index.md
deleted file mode 100644
index c05d048e..00000000
--- a/commands/db/export/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/export/
----
\ No newline at end of file
diff --git a/commands/db/import/index.md b/commands/db/import/index.md
deleted file mode 100644
index 74b6bd5f..00000000
--- a/commands/db/import/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/import/
----
\ No newline at end of file
diff --git a/commands/db/index.md b/commands/db/index.md
deleted file mode 100644
index 9eb8483c..00000000
--- a/commands/db/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/
----
\ No newline at end of file
diff --git a/commands/db/optimize/index.md b/commands/db/optimize/index.md
deleted file mode 100644
index 13c258c7..00000000
--- a/commands/db/optimize/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/optimize/
----
\ No newline at end of file
diff --git a/commands/db/query/index.md b/commands/db/query/index.md
deleted file mode 100644
index 7cbfb232..00000000
--- a/commands/db/query/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/query/
----
\ No newline at end of file
diff --git a/commands/db/repair/index.md b/commands/db/repair/index.md
deleted file mode 100644
index 4bb09152..00000000
--- a/commands/db/repair/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/repair/
----
\ No newline at end of file
diff --git a/commands/db/reset/index.md b/commands/db/reset/index.md
deleted file mode 100644
index ea4e3970..00000000
--- a/commands/db/reset/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/reset/
----
\ No newline at end of file
diff --git a/commands/db/tables/index.md b/commands/db/tables/index.md
deleted file mode 100644
index d35d47d1..00000000
--- a/commands/db/tables/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/db/tables/
----
\ No newline at end of file
diff --git a/commands/eval-file/index.md b/commands/eval-file/index.md
deleted file mode 100644
index 99da8219..00000000
--- a/commands/eval-file/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/eval-file/
----
\ No newline at end of file
diff --git a/commands/eval/index.md b/commands/eval/index.md
deleted file mode 100644
index 133cbdfa..00000000
--- a/commands/eval/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/eval/
----
\ No newline at end of file
diff --git a/commands/export/index.md b/commands/export/index.md
deleted file mode 100644
index 03d5c2bf..00000000
--- a/commands/export/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/export/
----
\ No newline at end of file
diff --git a/commands/help/index.md b/commands/help/index.md
deleted file mode 100644
index 572ea263..00000000
--- a/commands/help/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/help/
----
\ No newline at end of file
diff --git a/commands/import/index.md b/commands/import/index.md
deleted file mode 100644
index f5dc2038..00000000
--- a/commands/import/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/import/
----
\ No newline at end of file
diff --git a/commands/media/import/index.md b/commands/media/import/index.md
deleted file mode 100644
index 7791aae0..00000000
--- a/commands/media/import/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/media/import/
----
\ No newline at end of file
diff --git a/commands/media/index.md b/commands/media/index.md
deleted file mode 100644
index 3d6aaba6..00000000
--- a/commands/media/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/media/
----
\ No newline at end of file
diff --git a/commands/media/regenerate/index.md b/commands/media/regenerate/index.md
deleted file mode 100644
index 421570e0..00000000
--- a/commands/media/regenerate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/media/regenerate/
----
\ No newline at end of file
diff --git a/commands/menu/create/index.md b/commands/menu/create/index.md
deleted file mode 100644
index 328f015f..00000000
--- a/commands/menu/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/create/
----
\ No newline at end of file
diff --git a/commands/menu/delete/index.md b/commands/menu/delete/index.md
deleted file mode 100644
index a82ae40d..00000000
--- a/commands/menu/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/delete/
----
\ No newline at end of file
diff --git a/commands/menu/index.md b/commands/menu/index.md
deleted file mode 100644
index ef050659..00000000
--- a/commands/menu/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/
----
\ No newline at end of file
diff --git a/commands/menu/item/add-custom/index.md b/commands/menu/item/add-custom/index.md
deleted file mode 100644
index 50474c1b..00000000
--- a/commands/menu/item/add-custom/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/add-custom/
----
\ No newline at end of file
diff --git a/commands/menu/item/add-post/index.md b/commands/menu/item/add-post/index.md
deleted file mode 100644
index 9f20940e..00000000
--- a/commands/menu/item/add-post/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/add-post/
----
\ No newline at end of file
diff --git a/commands/menu/item/add-term/index.md b/commands/menu/item/add-term/index.md
deleted file mode 100644
index da0b9d23..00000000
--- a/commands/menu/item/add-term/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/add-term/
----
\ No newline at end of file
diff --git a/commands/menu/item/delete/index.md b/commands/menu/item/delete/index.md
deleted file mode 100644
index 7c748e70..00000000
--- a/commands/menu/item/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/delete/
----
\ No newline at end of file
diff --git a/commands/menu/item/index.md b/commands/menu/item/index.md
deleted file mode 100644
index f09f1f86..00000000
--- a/commands/menu/item/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/
----
\ No newline at end of file
diff --git a/commands/menu/item/list/index.md b/commands/menu/item/list/index.md
deleted file mode 100644
index 0713b338..00000000
--- a/commands/menu/item/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/list/
----
\ No newline at end of file
diff --git a/commands/menu/item/update/index.md b/commands/menu/item/update/index.md
deleted file mode 100644
index 01b68582..00000000
--- a/commands/menu/item/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/item/update/
----
\ No newline at end of file
diff --git a/commands/menu/list/index.md b/commands/menu/list/index.md
deleted file mode 100644
index fded4a73..00000000
--- a/commands/menu/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/list/
----
\ No newline at end of file
diff --git a/commands/menu/location/assign/index.md b/commands/menu/location/assign/index.md
deleted file mode 100644
index 9c746201..00000000
--- a/commands/menu/location/assign/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/location/assign/
----
\ No newline at end of file
diff --git a/commands/menu/location/index.md b/commands/menu/location/index.md
deleted file mode 100644
index c66f02e5..00000000
--- a/commands/menu/location/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/location/
----
\ No newline at end of file
diff --git a/commands/menu/location/list/index.md b/commands/menu/location/list/index.md
deleted file mode 100644
index 6d1e3701..00000000
--- a/commands/menu/location/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/location/list/
----
\ No newline at end of file
diff --git a/commands/menu/location/remove/index.md b/commands/menu/location/remove/index.md
deleted file mode 100644
index fb4ceb5a..00000000
--- a/commands/menu/location/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/menu/location/remove/
----
\ No newline at end of file
diff --git a/commands/network/index.md b/commands/network/index.md
deleted file mode 100644
index 3c879aac..00000000
--- a/commands/network/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/
----
\ No newline at end of file
diff --git a/commands/network/meta/add/index.md b/commands/network/meta/add/index.md
deleted file mode 100644
index 860053db..00000000
--- a/commands/network/meta/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/add/
----
\ No newline at end of file
diff --git a/commands/network/meta/delete/index.md b/commands/network/meta/delete/index.md
deleted file mode 100644
index 01f0800c..00000000
--- a/commands/network/meta/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/delete/
----
\ No newline at end of file
diff --git a/commands/network/meta/get/index.md b/commands/network/meta/get/index.md
deleted file mode 100644
index 16932de1..00000000
--- a/commands/network/meta/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/get/
----
\ No newline at end of file
diff --git a/commands/network/meta/index.md b/commands/network/meta/index.md
deleted file mode 100644
index cdeaca95..00000000
--- a/commands/network/meta/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/
----
\ No newline at end of file
diff --git a/commands/network/meta/list/index.md b/commands/network/meta/list/index.md
deleted file mode 100644
index a3fed3c7..00000000
--- a/commands/network/meta/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/list/
----
\ No newline at end of file
diff --git a/commands/network/meta/update/index.md b/commands/network/meta/update/index.md
deleted file mode 100644
index b22e3a32..00000000
--- a/commands/network/meta/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/network/meta/update/
----
\ No newline at end of file
diff --git a/commands/option/add/index.md b/commands/option/add/index.md
deleted file mode 100644
index 403f7920..00000000
--- a/commands/option/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/add/
----
\ No newline at end of file
diff --git a/commands/option/delete/index.md b/commands/option/delete/index.md
deleted file mode 100644
index d471a9c3..00000000
--- a/commands/option/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/delete/
----
\ No newline at end of file
diff --git a/commands/option/get/index.md b/commands/option/get/index.md
deleted file mode 100644
index 56bd6852..00000000
--- a/commands/option/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/get/
----
\ No newline at end of file
diff --git a/commands/option/index.md b/commands/option/index.md
deleted file mode 100644
index 637929ff..00000000
--- a/commands/option/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/
----
\ No newline at end of file
diff --git a/commands/option/list/index.md b/commands/option/list/index.md
deleted file mode 100644
index 926ae1b4..00000000
--- a/commands/option/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/list/
----
\ No newline at end of file
diff --git a/commands/option/update/index.md b/commands/option/update/index.md
deleted file mode 100644
index d9f799f0..00000000
--- a/commands/option/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/option/update/
----
\ No newline at end of file
diff --git a/commands/package/browse/index.md b/commands/package/browse/index.md
deleted file mode 100644
index b0ad5d4f..00000000
--- a/commands/package/browse/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/browse/
----
\ No newline at end of file
diff --git a/commands/package/index.md b/commands/package/index.md
deleted file mode 100644
index ebb25bcf..00000000
--- a/commands/package/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/
----
\ No newline at end of file
diff --git a/commands/package/install/index.md b/commands/package/install/index.md
deleted file mode 100644
index ff315b55..00000000
--- a/commands/package/install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/install/
----
\ No newline at end of file
diff --git a/commands/package/list/index.md b/commands/package/list/index.md
deleted file mode 100644
index 0df19ed1..00000000
--- a/commands/package/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/list/
----
\ No newline at end of file
diff --git a/commands/package/path/index.md b/commands/package/path/index.md
deleted file mode 100644
index a29adb9d..00000000
--- a/commands/package/path/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/path/
----
\ No newline at end of file
diff --git a/commands/package/uninstall/index.md b/commands/package/uninstall/index.md
deleted file mode 100644
index 847871ae..00000000
--- a/commands/package/uninstall/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/uninstall/
----
\ No newline at end of file
diff --git a/commands/package/update/index.md b/commands/package/update/index.md
deleted file mode 100644
index 33f5b728..00000000
--- a/commands/package/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/package/update/
----
\ No newline at end of file
diff --git a/commands/plugin/activate/index.md b/commands/plugin/activate/index.md
deleted file mode 100644
index 0fd2b1f1..00000000
--- a/commands/plugin/activate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/activate/
----
\ No newline at end of file
diff --git a/commands/plugin/deactivate/index.md b/commands/plugin/deactivate/index.md
deleted file mode 100644
index 05aaf682..00000000
--- a/commands/plugin/deactivate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/deactivate/
----
\ No newline at end of file
diff --git a/commands/plugin/delete/index.md b/commands/plugin/delete/index.md
deleted file mode 100644
index 4d0e9541..00000000
--- a/commands/plugin/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/delete/
----
\ No newline at end of file
diff --git a/commands/plugin/get/index.md b/commands/plugin/get/index.md
deleted file mode 100644
index dec04a29..00000000
--- a/commands/plugin/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/get/
----
\ No newline at end of file
diff --git a/commands/plugin/index.md b/commands/plugin/index.md
deleted file mode 100644
index eb0260a9..00000000
--- a/commands/plugin/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/
----
\ No newline at end of file
diff --git a/commands/plugin/install/index.md b/commands/plugin/install/index.md
deleted file mode 100644
index 7682ff48..00000000
--- a/commands/plugin/install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/install/
----
\ No newline at end of file
diff --git a/commands/plugin/is-installed/index.md b/commands/plugin/is-installed/index.md
deleted file mode 100644
index d1cdedca..00000000
--- a/commands/plugin/is-installed/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/is-installed/
----
\ No newline at end of file
diff --git a/commands/plugin/list/index.md b/commands/plugin/list/index.md
deleted file mode 100644
index 40959e92..00000000
--- a/commands/plugin/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/list/
----
\ No newline at end of file
diff --git a/commands/plugin/path/index.md b/commands/plugin/path/index.md
deleted file mode 100644
index 22e187e0..00000000
--- a/commands/plugin/path/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/path/
----
\ No newline at end of file
diff --git a/commands/plugin/search/index.md b/commands/plugin/search/index.md
deleted file mode 100644
index 9ddf89b7..00000000
--- a/commands/plugin/search/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/search/
----
\ No newline at end of file
diff --git a/commands/plugin/status/index.md b/commands/plugin/status/index.md
deleted file mode 100644
index 31358b56..00000000
--- a/commands/plugin/status/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/status/
----
\ No newline at end of file
diff --git a/commands/plugin/toggle/index.md b/commands/plugin/toggle/index.md
deleted file mode 100644
index bbb60ac7..00000000
--- a/commands/plugin/toggle/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/toggle/
----
\ No newline at end of file
diff --git a/commands/plugin/uninstall/index.md b/commands/plugin/uninstall/index.md
deleted file mode 100644
index faac3fb8..00000000
--- a/commands/plugin/uninstall/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/uninstall/
----
\ No newline at end of file
diff --git a/commands/plugin/update-all/index.md b/commands/plugin/update-all/index.md
deleted file mode 100644
index 8f851dc4..00000000
--- a/commands/plugin/update-all/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/update-all/
----
\ No newline at end of file
diff --git a/commands/plugin/update/index.md b/commands/plugin/update/index.md
deleted file mode 100644
index 851eaaba..00000000
--- a/commands/plugin/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/plugin/update/
----
\ No newline at end of file
diff --git a/commands/post-type/get/index.md b/commands/post-type/get/index.md
deleted file mode 100644
index 00ea191e..00000000
--- a/commands/post-type/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post-type/get/
----
\ No newline at end of file
diff --git a/commands/post-type/index.md b/commands/post-type/index.md
deleted file mode 100644
index 21f74bdc..00000000
--- a/commands/post-type/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post-type/
----
\ No newline at end of file
diff --git a/commands/post-type/list/index.md b/commands/post-type/list/index.md
deleted file mode 100644
index cd697686..00000000
--- a/commands/post-type/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post-type/list/
----
\ No newline at end of file
diff --git a/commands/post/create/index.md b/commands/post/create/index.md
deleted file mode 100644
index f68570ef..00000000
--- a/commands/post/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/create/
----
\ No newline at end of file
diff --git a/commands/post/delete/index.md b/commands/post/delete/index.md
deleted file mode 100644
index 5a66451a..00000000
--- a/commands/post/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/delete/
----
\ No newline at end of file
diff --git a/commands/post/edit/index.md b/commands/post/edit/index.md
deleted file mode 100644
index 738c4ca5..00000000
--- a/commands/post/edit/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/edit/
----
\ No newline at end of file
diff --git a/commands/post/generate/index.md b/commands/post/generate/index.md
deleted file mode 100644
index 88f61c8f..00000000
--- a/commands/post/generate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/generate/
----
\ No newline at end of file
diff --git a/commands/post/get/index.md b/commands/post/get/index.md
deleted file mode 100644
index 7df99292..00000000
--- a/commands/post/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/get/
----
\ No newline at end of file
diff --git a/commands/post/index.md b/commands/post/index.md
deleted file mode 100644
index 7ee724b9..00000000
--- a/commands/post/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/
----
\ No newline at end of file
diff --git a/commands/post/list/index.md b/commands/post/list/index.md
deleted file mode 100644
index f7a8663e..00000000
--- a/commands/post/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/list/
----
\ No newline at end of file
diff --git a/commands/post/meta/add/index.md b/commands/post/meta/add/index.md
deleted file mode 100644
index 34e2171c..00000000
--- a/commands/post/meta/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/add/
----
\ No newline at end of file
diff --git a/commands/post/meta/delete/index.md b/commands/post/meta/delete/index.md
deleted file mode 100644
index efdddaed..00000000
--- a/commands/post/meta/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/delete/
----
\ No newline at end of file
diff --git a/commands/post/meta/get/index.md b/commands/post/meta/get/index.md
deleted file mode 100644
index cf7fe2db..00000000
--- a/commands/post/meta/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/get/
----
\ No newline at end of file
diff --git a/commands/post/meta/index.md b/commands/post/meta/index.md
deleted file mode 100644
index 33a9e9f8..00000000
--- a/commands/post/meta/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/
----
\ No newline at end of file
diff --git a/commands/post/meta/list/index.md b/commands/post/meta/list/index.md
deleted file mode 100644
index 6ce03bbd..00000000
--- a/commands/post/meta/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/list/
----
\ No newline at end of file
diff --git a/commands/post/meta/update/index.md b/commands/post/meta/update/index.md
deleted file mode 100644
index 777e1b71..00000000
--- a/commands/post/meta/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/meta/update/
----
\ No newline at end of file
diff --git a/commands/post/term/add/index.md b/commands/post/term/add/index.md
deleted file mode 100644
index 254f552d..00000000
--- a/commands/post/term/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/term/add/
----
\ No newline at end of file
diff --git a/commands/post/term/index.md b/commands/post/term/index.md
deleted file mode 100644
index 5b3e7d6f..00000000
--- a/commands/post/term/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/term/
----
\ No newline at end of file
diff --git a/commands/post/term/list/index.md b/commands/post/term/list/index.md
deleted file mode 100644
index 18c8993a..00000000
--- a/commands/post/term/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/term/list/
----
\ No newline at end of file
diff --git a/commands/post/term/remove/index.md b/commands/post/term/remove/index.md
deleted file mode 100644
index e9130d5b..00000000
--- a/commands/post/term/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/term/remove/
----
\ No newline at end of file
diff --git a/commands/post/term/set/index.md b/commands/post/term/set/index.md
deleted file mode 100644
index b166638c..00000000
--- a/commands/post/term/set/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/term/set/
----
\ No newline at end of file
diff --git a/commands/post/update/index.md b/commands/post/update/index.md
deleted file mode 100644
index 2dbb9b18..00000000
--- a/commands/post/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/post/update/
----
\ No newline at end of file
diff --git a/commands/rewrite/flush/index.md b/commands/rewrite/flush/index.md
deleted file mode 100644
index 426b6b90..00000000
--- a/commands/rewrite/flush/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/rewrite/flush/
----
\ No newline at end of file
diff --git a/commands/rewrite/index.md b/commands/rewrite/index.md
deleted file mode 100644
index 55ee63e7..00000000
--- a/commands/rewrite/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/rewrite/
----
\ No newline at end of file
diff --git a/commands/rewrite/list/index.md b/commands/rewrite/list/index.md
deleted file mode 100644
index 0be10b1b..00000000
--- a/commands/rewrite/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/rewrite/list/
----
\ No newline at end of file
diff --git a/commands/rewrite/structure/index.md b/commands/rewrite/structure/index.md
deleted file mode 100644
index bc3b0ec6..00000000
--- a/commands/rewrite/structure/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/rewrite/structure/
----
\ No newline at end of file
diff --git a/commands/role/create/index.md b/commands/role/create/index.md
deleted file mode 100644
index 3f5f1c4c..00000000
--- a/commands/role/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/create/
----
\ No newline at end of file
diff --git a/commands/role/delete/index.md b/commands/role/delete/index.md
deleted file mode 100644
index 4ad63ee2..00000000
--- a/commands/role/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/delete/
----
\ No newline at end of file
diff --git a/commands/role/exists/index.md b/commands/role/exists/index.md
deleted file mode 100644
index ade85b2f..00000000
--- a/commands/role/exists/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/exists/
----
\ No newline at end of file
diff --git a/commands/role/index.md b/commands/role/index.md
deleted file mode 100644
index ac7fae3c..00000000
--- a/commands/role/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/
----
\ No newline at end of file
diff --git a/commands/role/list/index.md b/commands/role/list/index.md
deleted file mode 100644
index 2badf624..00000000
--- a/commands/role/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/list/
----
\ No newline at end of file
diff --git a/commands/role/reset/index.md b/commands/role/reset/index.md
deleted file mode 100644
index 5227781d..00000000
--- a/commands/role/reset/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/role/reset/
----
\ No newline at end of file
diff --git a/commands/scaffold/_s/index.md b/commands/scaffold/_s/index.md
deleted file mode 100644
index e89885cb..00000000
--- a/commands/scaffold/_s/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/_s/
----
\ No newline at end of file
diff --git a/commands/scaffold/child-theme/index.md b/commands/scaffold/child-theme/index.md
deleted file mode 100644
index cde98b69..00000000
--- a/commands/scaffold/child-theme/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/child-theme/
----
\ No newline at end of file
diff --git a/commands/scaffold/index.md b/commands/scaffold/index.md
deleted file mode 100644
index 1cdd0597..00000000
--- a/commands/scaffold/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/
----
\ No newline at end of file
diff --git a/commands/scaffold/plugin-tests/index.md b/commands/scaffold/plugin-tests/index.md
deleted file mode 100644
index 34242ec4..00000000
--- a/commands/scaffold/plugin-tests/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/plugin-tests/
----
\ No newline at end of file
diff --git a/commands/scaffold/plugin/index.md b/commands/scaffold/plugin/index.md
deleted file mode 100644
index d11fe36c..00000000
--- a/commands/scaffold/plugin/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/plugin/
----
\ No newline at end of file
diff --git a/commands/scaffold/post-type/index.md b/commands/scaffold/post-type/index.md
deleted file mode 100644
index c0adab84..00000000
--- a/commands/scaffold/post-type/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/post-type/
----
\ No newline at end of file
diff --git a/commands/scaffold/taxonomy/index.md b/commands/scaffold/taxonomy/index.md
deleted file mode 100644
index 521a39af..00000000
--- a/commands/scaffold/taxonomy/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/taxonomy/
----
\ No newline at end of file
diff --git a/commands/scaffold/theme-tests/index.md b/commands/scaffold/theme-tests/index.md
deleted file mode 100644
index 7c2cf5ef..00000000
--- a/commands/scaffold/theme-tests/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/scaffold/theme-tests/
----
\ No newline at end of file
diff --git a/commands/search-replace/index.md b/commands/search-replace/index.md
deleted file mode 100644
index aa13a254..00000000
--- a/commands/search-replace/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/search-replace/
----
\ No newline at end of file
diff --git a/commands/server/index.md b/commands/server/index.md
deleted file mode 100644
index 72286e3b..00000000
--- a/commands/server/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/server/
----
\ No newline at end of file
diff --git a/commands/shell/index.md b/commands/shell/index.md
deleted file mode 100644
index 2891bd1b..00000000
--- a/commands/shell/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/shell/
----
\ No newline at end of file
diff --git a/commands/sidebar/index.md b/commands/sidebar/index.md
deleted file mode 100644
index 404346c8..00000000
--- a/commands/sidebar/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/sidebar/
----
\ No newline at end of file
diff --git a/commands/sidebar/list/index.md b/commands/sidebar/list/index.md
deleted file mode 100644
index fc8ce0f8..00000000
--- a/commands/sidebar/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/sidebar/list/
----
\ No newline at end of file
diff --git a/commands/site/activate/index.md b/commands/site/activate/index.md
deleted file mode 100644
index 4191d9d7..00000000
--- a/commands/site/activate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/activate/
----
\ No newline at end of file
diff --git a/commands/site/archive/index.md b/commands/site/archive/index.md
deleted file mode 100644
index 9260e815..00000000
--- a/commands/site/archive/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/archive/
----
\ No newline at end of file
diff --git a/commands/site/create/index.md b/commands/site/create/index.md
deleted file mode 100644
index 3502b1a0..00000000
--- a/commands/site/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/create/
----
\ No newline at end of file
diff --git a/commands/site/deactivate/index.md b/commands/site/deactivate/index.md
deleted file mode 100644
index 868cde0a..00000000
--- a/commands/site/deactivate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/deactivate/
----
\ No newline at end of file
diff --git a/commands/site/delete/index.md b/commands/site/delete/index.md
deleted file mode 100644
index 312f171c..00000000
--- a/commands/site/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/delete/
----
\ No newline at end of file
diff --git a/commands/site/empty/index.md b/commands/site/empty/index.md
deleted file mode 100644
index 3017c434..00000000
--- a/commands/site/empty/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/empty/
----
\ No newline at end of file
diff --git a/commands/site/index.md b/commands/site/index.md
deleted file mode 100644
index 39ca96ed..00000000
--- a/commands/site/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/
----
\ No newline at end of file
diff --git a/commands/site/list/index.md b/commands/site/list/index.md
deleted file mode 100644
index 821357c8..00000000
--- a/commands/site/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/list/
----
\ No newline at end of file
diff --git a/commands/site/option/add/index.md b/commands/site/option/add/index.md
deleted file mode 100644
index e41ddbf6..00000000
--- a/commands/site/option/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/add/
----
\ No newline at end of file
diff --git a/commands/site/option/delete/index.md b/commands/site/option/delete/index.md
deleted file mode 100644
index 2907d7bd..00000000
--- a/commands/site/option/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/delete/
----
\ No newline at end of file
diff --git a/commands/site/option/get/index.md b/commands/site/option/get/index.md
deleted file mode 100644
index e444530c..00000000
--- a/commands/site/option/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/get/
----
\ No newline at end of file
diff --git a/commands/site/option/index.md b/commands/site/option/index.md
deleted file mode 100644
index ed1a6966..00000000
--- a/commands/site/option/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/
----
\ No newline at end of file
diff --git a/commands/site/option/list/index.md b/commands/site/option/list/index.md
deleted file mode 100644
index d206e838..00000000
--- a/commands/site/option/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/list/
----
\ No newline at end of file
diff --git a/commands/site/option/update/index.md b/commands/site/option/update/index.md
deleted file mode 100644
index c0733251..00000000
--- a/commands/site/option/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/option/update/
----
\ No newline at end of file
diff --git a/commands/site/spam/index.md b/commands/site/spam/index.md
deleted file mode 100644
index 20785019..00000000
--- a/commands/site/spam/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/spam/
----
\ No newline at end of file
diff --git a/commands/site/unarchive/index.md b/commands/site/unarchive/index.md
deleted file mode 100644
index e328a315..00000000
--- a/commands/site/unarchive/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/unarchive/
----
\ No newline at end of file
diff --git a/commands/site/unspam/index.md b/commands/site/unspam/index.md
deleted file mode 100644
index a1631b11..00000000
--- a/commands/site/unspam/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/site/unspam/
----
\ No newline at end of file
diff --git a/commands/super-admin/add/index.md b/commands/super-admin/add/index.md
deleted file mode 100644
index edc0f3a7..00000000
--- a/commands/super-admin/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/super-admin/add/
----
\ No newline at end of file
diff --git a/commands/super-admin/index.md b/commands/super-admin/index.md
deleted file mode 100644
index 63edbde6..00000000
--- a/commands/super-admin/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/super-admin/
----
\ No newline at end of file
diff --git a/commands/super-admin/list/index.md b/commands/super-admin/list/index.md
deleted file mode 100644
index 449605c7..00000000
--- a/commands/super-admin/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/super-admin/list/
----
\ No newline at end of file
diff --git a/commands/super-admin/remove/index.md b/commands/super-admin/remove/index.md
deleted file mode 100644
index 7025bc76..00000000
--- a/commands/super-admin/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/super-admin/remove/
----
\ No newline at end of file
diff --git a/commands/taxonomy/get/index.md b/commands/taxonomy/get/index.md
deleted file mode 100644
index 8dd49989..00000000
--- a/commands/taxonomy/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/taxonomy/get/
----
\ No newline at end of file
diff --git a/commands/taxonomy/index.md b/commands/taxonomy/index.md
deleted file mode 100644
index e7f6f919..00000000
--- a/commands/taxonomy/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/taxonomy/
----
\ No newline at end of file
diff --git a/commands/taxonomy/list/index.md b/commands/taxonomy/list/index.md
deleted file mode 100644
index 9faefe28..00000000
--- a/commands/taxonomy/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/taxonomy/list/
----
\ No newline at end of file
diff --git a/commands/term/create/index.md b/commands/term/create/index.md
deleted file mode 100644
index 2319bb7f..00000000
--- a/commands/term/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/create/
----
\ No newline at end of file
diff --git a/commands/term/delete/index.md b/commands/term/delete/index.md
deleted file mode 100644
index 93ae4ba6..00000000
--- a/commands/term/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/delete/
----
\ No newline at end of file
diff --git a/commands/term/generate/index.md b/commands/term/generate/index.md
deleted file mode 100644
index 7723ec5e..00000000
--- a/commands/term/generate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/generate/
----
\ No newline at end of file
diff --git a/commands/term/get/index.md b/commands/term/get/index.md
deleted file mode 100644
index add6a239..00000000
--- a/commands/term/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/get/
----
\ No newline at end of file
diff --git a/commands/term/index.md b/commands/term/index.md
deleted file mode 100644
index e08cc23f..00000000
--- a/commands/term/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/
----
\ No newline at end of file
diff --git a/commands/term/list/index.md b/commands/term/list/index.md
deleted file mode 100644
index fbe67e3e..00000000
--- a/commands/term/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/list/
----
\ No newline at end of file
diff --git a/commands/term/meta/add/index.md b/commands/term/meta/add/index.md
deleted file mode 100644
index 98972be8..00000000
--- a/commands/term/meta/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/add/
----
\ No newline at end of file
diff --git a/commands/term/meta/delete/index.md b/commands/term/meta/delete/index.md
deleted file mode 100644
index adea46b5..00000000
--- a/commands/term/meta/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/delete/
----
\ No newline at end of file
diff --git a/commands/term/meta/get/index.md b/commands/term/meta/get/index.md
deleted file mode 100644
index c774b038..00000000
--- a/commands/term/meta/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/get/
----
\ No newline at end of file
diff --git a/commands/term/meta/index.md b/commands/term/meta/index.md
deleted file mode 100644
index c71a250d..00000000
--- a/commands/term/meta/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/
----
\ No newline at end of file
diff --git a/commands/term/meta/list/index.md b/commands/term/meta/list/index.md
deleted file mode 100644
index 1f3f1028..00000000
--- a/commands/term/meta/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/list/
----
\ No newline at end of file
diff --git a/commands/term/meta/update/index.md b/commands/term/meta/update/index.md
deleted file mode 100644
index a47bd2c6..00000000
--- a/commands/term/meta/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/meta/update/
----
\ No newline at end of file
diff --git a/commands/term/recount/index.md b/commands/term/recount/index.md
deleted file mode 100644
index 23f0263c..00000000
--- a/commands/term/recount/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/recount/
----
\ No newline at end of file
diff --git a/commands/term/update/index.md b/commands/term/update/index.md
deleted file mode 100644
index 7ee8473d..00000000
--- a/commands/term/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/term/update/
----
\ No newline at end of file
diff --git a/commands/theme/activate/index.md b/commands/theme/activate/index.md
deleted file mode 100644
index 70d50b6f..00000000
--- a/commands/theme/activate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/activate/
----
\ No newline at end of file
diff --git a/commands/theme/delete/index.md b/commands/theme/delete/index.md
deleted file mode 100644
index 2f9954a9..00000000
--- a/commands/theme/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/delete/
----
\ No newline at end of file
diff --git a/commands/theme/disable/index.md b/commands/theme/disable/index.md
deleted file mode 100644
index b312bbee..00000000
--- a/commands/theme/disable/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/disable/
----
\ No newline at end of file
diff --git a/commands/theme/enable/index.md b/commands/theme/enable/index.md
deleted file mode 100644
index ebed834c..00000000
--- a/commands/theme/enable/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/enable/
----
\ No newline at end of file
diff --git a/commands/theme/get/index.md b/commands/theme/get/index.md
deleted file mode 100644
index cf178449..00000000
--- a/commands/theme/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/get/
----
\ No newline at end of file
diff --git a/commands/theme/index.md b/commands/theme/index.md
deleted file mode 100644
index 8d5c6d76..00000000
--- a/commands/theme/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/
----
\ No newline at end of file
diff --git a/commands/theme/install/index.md b/commands/theme/install/index.md
deleted file mode 100644
index c8fe8318..00000000
--- a/commands/theme/install/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/install/
----
\ No newline at end of file
diff --git a/commands/theme/is-installed/index.md b/commands/theme/is-installed/index.md
deleted file mode 100644
index a846bace..00000000
--- a/commands/theme/is-installed/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/is-installed/
----
\ No newline at end of file
diff --git a/commands/theme/list/index.md b/commands/theme/list/index.md
deleted file mode 100644
index 94f386fc..00000000
--- a/commands/theme/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/list/
----
\ No newline at end of file
diff --git a/commands/theme/mod/get/index.md b/commands/theme/mod/get/index.md
deleted file mode 100644
index b6ca8909..00000000
--- a/commands/theme/mod/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/mod/get/
----
\ No newline at end of file
diff --git a/commands/theme/mod/index.md b/commands/theme/mod/index.md
deleted file mode 100644
index af7293b5..00000000
--- a/commands/theme/mod/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/mod/
----
\ No newline at end of file
diff --git a/commands/theme/mod/remove/index.md b/commands/theme/mod/remove/index.md
deleted file mode 100644
index 7a7382e7..00000000
--- a/commands/theme/mod/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/mod/remove/
----
\ No newline at end of file
diff --git a/commands/theme/mod/set/index.md b/commands/theme/mod/set/index.md
deleted file mode 100644
index 802367dd..00000000
--- a/commands/theme/mod/set/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/mod/set/
----
\ No newline at end of file
diff --git a/commands/theme/path/index.md b/commands/theme/path/index.md
deleted file mode 100644
index 33cefc57..00000000
--- a/commands/theme/path/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/path/
----
\ No newline at end of file
diff --git a/commands/theme/search/index.md b/commands/theme/search/index.md
deleted file mode 100644
index 727c8ba2..00000000
--- a/commands/theme/search/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/search/
----
\ No newline at end of file
diff --git a/commands/theme/status/index.md b/commands/theme/status/index.md
deleted file mode 100644
index 3af22e0e..00000000
--- a/commands/theme/status/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/status/
----
\ No newline at end of file
diff --git a/commands/theme/update-all/index.md b/commands/theme/update-all/index.md
deleted file mode 100644
index d76844ef..00000000
--- a/commands/theme/update-all/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/update-all/
----
\ No newline at end of file
diff --git a/commands/theme/update/index.md b/commands/theme/update/index.md
deleted file mode 100644
index 8146d0cd..00000000
--- a/commands/theme/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/theme/update/
----
\ No newline at end of file
diff --git a/commands/transient/delete/index.md b/commands/transient/delete/index.md
deleted file mode 100644
index d938d89c..00000000
--- a/commands/transient/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/transient/delete/
----
\ No newline at end of file
diff --git a/commands/transient/get/index.md b/commands/transient/get/index.md
deleted file mode 100644
index 8a0c8a80..00000000
--- a/commands/transient/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/transient/get/
----
\ No newline at end of file
diff --git a/commands/transient/index.md b/commands/transient/index.md
deleted file mode 100644
index 95839b6d..00000000
--- a/commands/transient/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/transient/
----
\ No newline at end of file
diff --git a/commands/transient/set/index.md b/commands/transient/set/index.md
deleted file mode 100644
index e8131ad5..00000000
--- a/commands/transient/set/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/transient/set/
----
\ No newline at end of file
diff --git a/commands/transient/type/index.md b/commands/transient/type/index.md
deleted file mode 100644
index 9914fb9e..00000000
--- a/commands/transient/type/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/transient/type/
----
\ No newline at end of file
diff --git a/commands/user/add-cap/index.md b/commands/user/add-cap/index.md
deleted file mode 100644
index da5f3867..00000000
--- a/commands/user/add-cap/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/add-cap/
----
\ No newline at end of file
diff --git a/commands/user/add-role/index.md b/commands/user/add-role/index.md
deleted file mode 100644
index 36ade048..00000000
--- a/commands/user/add-role/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/add-role/
----
\ No newline at end of file
diff --git a/commands/user/create/index.md b/commands/user/create/index.md
deleted file mode 100644
index 7dbd1471..00000000
--- a/commands/user/create/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/create/
----
\ No newline at end of file
diff --git a/commands/user/delete/index.md b/commands/user/delete/index.md
deleted file mode 100644
index 806726e1..00000000
--- a/commands/user/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/delete/
----
\ No newline at end of file
diff --git a/commands/user/generate/index.md b/commands/user/generate/index.md
deleted file mode 100644
index 947db510..00000000
--- a/commands/user/generate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/generate/
----
\ No newline at end of file
diff --git a/commands/user/get/index.md b/commands/user/get/index.md
deleted file mode 100644
index 00539b88..00000000
--- a/commands/user/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/get/
----
\ No newline at end of file
diff --git a/commands/user/import-csv/index.md b/commands/user/import-csv/index.md
deleted file mode 100644
index 49624d39..00000000
--- a/commands/user/import-csv/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/import-csv/
----
\ No newline at end of file
diff --git a/commands/user/index.md b/commands/user/index.md
deleted file mode 100644
index 4a796672..00000000
--- a/commands/user/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/
----
\ No newline at end of file
diff --git a/commands/user/list-caps/index.md b/commands/user/list-caps/index.md
deleted file mode 100644
index 26e8b1d2..00000000
--- a/commands/user/list-caps/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/list-caps/
----
\ No newline at end of file
diff --git a/commands/user/list/index.md b/commands/user/list/index.md
deleted file mode 100644
index cf171af0..00000000
--- a/commands/user/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/list/
----
\ No newline at end of file
diff --git a/commands/user/meta/add/index.md b/commands/user/meta/add/index.md
deleted file mode 100644
index fd972561..00000000
--- a/commands/user/meta/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/add/
----
\ No newline at end of file
diff --git a/commands/user/meta/delete/index.md b/commands/user/meta/delete/index.md
deleted file mode 100644
index e6577e1b..00000000
--- a/commands/user/meta/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/delete/
----
\ No newline at end of file
diff --git a/commands/user/meta/get/index.md b/commands/user/meta/get/index.md
deleted file mode 100644
index 4529e883..00000000
--- a/commands/user/meta/get/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/get/
----
\ No newline at end of file
diff --git a/commands/user/meta/index.md b/commands/user/meta/index.md
deleted file mode 100644
index 3998b2d0..00000000
--- a/commands/user/meta/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/
----
\ No newline at end of file
diff --git a/commands/user/meta/list/index.md b/commands/user/meta/list/index.md
deleted file mode 100644
index 4191b53a..00000000
--- a/commands/user/meta/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/list/
----
\ No newline at end of file
diff --git a/commands/user/meta/update/index.md b/commands/user/meta/update/index.md
deleted file mode 100644
index 35533144..00000000
--- a/commands/user/meta/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/meta/update/
----
\ No newline at end of file
diff --git a/commands/user/remove-cap/index.md b/commands/user/remove-cap/index.md
deleted file mode 100644
index ab1faead..00000000
--- a/commands/user/remove-cap/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/remove-cap/
----
\ No newline at end of file
diff --git a/commands/user/remove-role/index.md b/commands/user/remove-role/index.md
deleted file mode 100644
index e5e03675..00000000
--- a/commands/user/remove-role/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/remove-role/
----
\ No newline at end of file
diff --git a/commands/user/session/destroy/index.md b/commands/user/session/destroy/index.md
deleted file mode 100644
index e9b02858..00000000
--- a/commands/user/session/destroy/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/session/destroy/
----
\ No newline at end of file
diff --git a/commands/user/session/index.md b/commands/user/session/index.md
deleted file mode 100644
index 042918fb..00000000
--- a/commands/user/session/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/session/
----
\ No newline at end of file
diff --git a/commands/user/session/list/index.md b/commands/user/session/list/index.md
deleted file mode 100644
index cf3718a7..00000000
--- a/commands/user/session/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/session/list/
----
\ No newline at end of file
diff --git a/commands/user/set-role/index.md b/commands/user/set-role/index.md
deleted file mode 100644
index 91ae263c..00000000
--- a/commands/user/set-role/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/set-role/
----
\ No newline at end of file
diff --git a/commands/user/term/add/index.md b/commands/user/term/add/index.md
deleted file mode 100644
index 2d30ee79..00000000
--- a/commands/user/term/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/term/add/
----
\ No newline at end of file
diff --git a/commands/user/term/index.md b/commands/user/term/index.md
deleted file mode 100644
index 475e9bfb..00000000
--- a/commands/user/term/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/term/
----
\ No newline at end of file
diff --git a/commands/user/term/list/index.md b/commands/user/term/list/index.md
deleted file mode 100644
index 478e0df0..00000000
--- a/commands/user/term/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/term/list/
----
\ No newline at end of file
diff --git a/commands/user/term/remove/index.md b/commands/user/term/remove/index.md
deleted file mode 100644
index eea3816c..00000000
--- a/commands/user/term/remove/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/term/remove/
----
\ No newline at end of file
diff --git a/commands/user/term/set/index.md b/commands/user/term/set/index.md
deleted file mode 100644
index 6071bdac..00000000
--- a/commands/user/term/set/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/term/set/
----
\ No newline at end of file
diff --git a/commands/user/update/index.md b/commands/user/update/index.md
deleted file mode 100644
index 5bacc5d5..00000000
--- a/commands/user/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/user/update/
----
\ No newline at end of file
diff --git a/commands/widget/add/index.md b/commands/widget/add/index.md
deleted file mode 100644
index 6ba31d44..00000000
--- a/commands/widget/add/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/add/
----
\ No newline at end of file
diff --git a/commands/widget/deactivate/index.md b/commands/widget/deactivate/index.md
deleted file mode 100644
index 6e100687..00000000
--- a/commands/widget/deactivate/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/deactivate/
----
\ No newline at end of file
diff --git a/commands/widget/delete/index.md b/commands/widget/delete/index.md
deleted file mode 100644
index 150dbfbf..00000000
--- a/commands/widget/delete/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/delete/
----
\ No newline at end of file
diff --git a/commands/widget/index.md b/commands/widget/index.md
deleted file mode 100644
index dc0c96f4..00000000
--- a/commands/widget/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/
----
\ No newline at end of file
diff --git a/commands/widget/list/index.md b/commands/widget/list/index.md
deleted file mode 100644
index de12b972..00000000
--- a/commands/widget/list/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/list/
----
\ No newline at end of file
diff --git a/commands/widget/move/index.md b/commands/widget/move/index.md
deleted file mode 100644
index 54233007..00000000
--- a/commands/widget/move/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/move/
----
\ No newline at end of file
diff --git a/commands/widget/reset/index.md b/commands/widget/reset/index.md
deleted file mode 100644
index afd346fd..00000000
--- a/commands/widget/reset/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/reset/
----
\ No newline at end of file
diff --git a/commands/widget/update/index.md b/commands/widget/update/index.md
deleted file mode 100644
index 5ec3a1df..00000000
--- a/commands/widget/update/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://developer.wordpress.org/cli/commands/widget/update/
----
\ No newline at end of file
diff --git a/de/index.md b/de/index.md
index 0e845141..ab63dbe0 100644
--- a/de/index.md
+++ b/de/index.md
@@ -1,173 +1,124 @@
-WP-CLI
-======
-
-[WP-CLI](https://wp-cli.org/) ist das Kommandozeilen-Werkzeug für [WordPress](https://de.wordpress.org/). Du kannst Plugins aktualisieren, Multisite-Installationen konfigurieren und vieles mehr, ohne einen Browser zu benutzen.
-
-Die laufende Pflege wird ermöglicht durch:
-
-
-
-Das aktuelle stabile Release ist [Version 2.12.0](https://make.wordpress.org/cli/2025/05/07/wp-cli-v2-12-0-release-notes/) (engl.). Folge für Ankündigungen [@wpcli auf Twitter](https://twitter.com/wpcli) oder [registriere dich für Aktualisierungen per E-Mail](https://make.wordpress.org/cli/subscribe/) (engl.). [Sieh dir die Roadmap an](https://make.wordpress.org/cli/handbook/roadmap/) (engl.), um einen Überblick zu erhalten, was in zukünftigen Releases geplant ist.
-
-[](https://github.com/wp-cli/wp-cli/actions/workflows/testing.yml) [](https://isitmaintained.com/project/wp-cli/wp-cli "Durchschnittliche Zeit, bis ein Problem behoben wurde") [](https://isitmaintained.com/project/wp-cli/wp-cli "Prozentuale Anzahl an offenen Problemen")
+---
+layout: default
+title: Kommandozeilen-Interface für WordPress
+---
+
+[WP-CLI](https://wp-cli.org/) ist eine Sammlung von Kommandozeilen-Tools zur Verwaltung von [WordPress](https://wordpress.org/) Installationen. Du kannst Plugins aktualisieren, Multisite Installationen konfigurieren und vieles mehr, ohne einen Browser zu verwenden.
+
+Um stets auf dem Laufenden zu bleiben, folge [@wpcli auf Twitter](https://twitter.com/wpcli) oder [abonniere den Newsletter](http://wp-cli.us13.list-manage.com/subscribe?u=0615e4d18f213891fc000adfd&id=8c61d7641e).
+
+[](https://travis-ci.org/wp-cli/wp-cli) [](https://gemnasium.com/github.com/wp-cli/wp-cli) [](http://isitmaintained.com/project/wp-cli/wp-cli "Durchschnittliche Zeit bis zur Lösung eines Issues") [](http://isitmaintained.com/project/wp-cli/wp-cli "Prozentsatz noch offener Issues")
Quick links: [Benutzung](#benutzung) | [Installation](#installation) | [Support](#support) | [Erweitern](#erweitern) | [Mitwirken](#mitwirken) | [Credits](#credits)
## Benutzung
-WP-CLI bietet eine Kommandozeilen-Benutzeroberfläche für viele Aktionen, die du eigentlich im WordPress-Administrationsbereich durchführst. `wp plugin install --activate` ([Dok.](https://developer.wordpress.org/cli/commands/plugin/install/)) lässt dich beispielsweise ein WordPress-Plugin installieren und aktivieren:
+Das Ziel von WP-CLI ist es, für jede Aktion ein Kommandozeilen-Interface zur Verfügung zu stellen, die man auch über den Adminbereich ausführen kann. Mit `wp plugin install --activate` ([doc](https://wp-cli.org/commands/plugin/install/)) kann man zum Beispiel ein WordPress Plugin installieren und aktivieren:
```bash
-$ wp plugin install user-switching --activate
-Installing User Switching (1.0.9)
-Downloading installation package from https://downloads.wordpress.org/plugin/user-switching.1.0.9.zip...
+$ wp plugin install rest-api --activate
+Installing WordPress REST API (Version 2) (2.0-beta13)
+Downloading install package from https://downloads.wordpress.org/plugin/rest-api.2.0-beta13.zip...
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
-Activating 'user-switching'...
-Plugin 'user-switching' activated.
-Success: Installed 1 of 1 plugins.
+Activating 'rest-api'...
+Success: Plugin 'rest-api' activated.
```
-WP-CLI enthält auch Befehle für viele Dinge, die du im WordPress-Administrationsbereich nicht tun kannst. Mit `wp transient delete-all` ([Dok.](https://developer.wordpress.org/cli/commands/transient/delete/)) kannst du beispielsweise bestimmte oder alle Transients löschen:
+WP-CLI enthält auch Befehle für viele Dinge, die man im Adminbereich nicht tun kann. Mit `wp transient delete-all` ([doc](https://wp-cli.org/commands/transient/delete-all/)) kannst du z.B. bestimmte oder alle Transients löschen:
```bash
-$ wp transient delete --all
+$ wp transient delete-all
Success: 34 transients deleted from the database.
```
-Für eine umfassendere Einführung in die Benutzung von WP-CLI, lies am besten die [Schnellstartanleitung](https://make.wordpress.org/cli/handbook/quick-start/) (engl.), oder sieh dir [Shell-Freunde](https://make.wordpress.org/cli/handbook/shell-friends/) (engl.) an, um mehr über die Kommandozeilen-Helferlein zu erfahren.
+Für eine umfassendere Einführung in die Benutzung von WP-CLI, lies am besten den [Quick Start guide](https://wp-cli.org/docs/quick-start/).
-Bereits genug von den Basics? Sieh dir die [komplette Liste an Befehlen](https://developer.wordpress.org/cli/commands/) (engl.) für detailliertere Informationen zur Verwaltung von Themes und Plugins, Datenimport und -export, Suchen/Ersetzen-Operationen in der Datenbank und mehr an.
+Bereits genug von den Basics? Sieh dir die [komplette Liste an Befehlen](https://wp-cli.org/commands/) an für detailliertere Informationen zur Verwaltung von Themes und Plugins, Datenimport und -export, Suchen/Ersetzen-Operationen in der Datenbank und mehr.
## Installation
-Das Herunterladen der Phar Datei ist unsere empfohlene Installationsweise. Falls nötig, gibt es auch eine Dokumentation zu [alternativen Installationsmethoden](https://make.wordpress.org/cli/handbook/installing/) (engl.) ([Composer](https://make.wordpress.org/cli/handbook/installing/#installing-via-composer) (engl.), [Homebrew](https://make.wordpress.org/cli/handbook/installing/#installing-via-homebrew) (engl.), [Docker](https://make.wordpress.org/cli/handbook/installing/#installing-via-docker) (engl.)).
+Das Herunterladen der Phar Datei ist unsere empfohlene Installationsweise. Falls nötig, gibt es auch eine Dokumentation zu [alternativen Installationsmethoden](https://wp-cli.org/docs/installing/).
Bevor du WP-CLI installierst, stell bitte sicher, dass dein System die Mindestanforderungen erfüllt:
- UNIX-ähnliche Umgebung (OS X, Linux, FreeBSD, Cygwin); eingeschränkter Support in Windows-Umgebungen
-- PHP 5.6 oder neuer
-- WordPress 3.7 oder neuer. Ältere Versionen als das aktuelle WordPress-Release haben funktionelle Einschränkungen
+- PHP 5.3.29 oder höher
+- WordPress 3.7 oder höher
-Sobald du die Mindestanforderungen geprüft hast, lade die [wp-cli.phar](https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar)-Datei mittels `wget` oder `curl` herunter:
+Sobald du die Mindestanforderungen geprüft hast, lade die [wp-cli.phar](https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) Datei mittels `wget` oder `curl` herunter:
```bash
-curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
+$ curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
```
-Prüfe als nächstes, ob die Phar-Datei funktioniert:
+Prüfe als nächstes, ob es funktioniert:
```bash
-php wp-cli.phar --info
+$ php wp-cli.phar --info
```
-Um WP-CLI auf der Kommandozeile durch blosses Eintippen von `wp` zu benutzen, mach die Datei ausführbar und verschiebe sie irgendwo hin innerhalb deines PATH. Zum Beispiel:
+Um WP-CLI auf der Kommandozeile durch blosses Tippen von `wp` zu nutzen, mache die Datei ausführbar und verschiebe es irgendwo hin innerhalb deines PATH. Zum Beispiel:
```bash
-chmod +x wp-cli.phar
-sudo mv wp-cli.phar /usr/local/bin/wp
+$ chmod +x wp-cli.phar
+$ sudo mv wp-cli.phar /usr/local/bin/wp
```
Wenn WP-CLI erfolgreich installiert wurde, solltest du bei der Ausführung von `wp --info` etwas wie hier sehen:
```bash
$ wp --info
-OS: Linux 5.10.60.1-microsoft-standard-WSL2 #1 SMP Wed Aug 25 23:20:18 UTC 2021 x86_64
-Shell: /usr/bin/zsh
-PHP binary: /usr/bin/php8.1
-PHP version: 8.1.0
-php.ini used: /etc/php/8.1/cli/php.ini
-MySQL binary: /usr/bin/mysql
-MySQL version: mysql Ver 8.0.27-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
-SQL modes:
-WP-CLI root dir: /home/wp-cli/
-WP-CLI vendor dir: /home/wp-cli/vendor
-WP_CLI phar path:
+PHP binary: /usr/bin/php5
+PHP version: 5.5.9-1ubuntu4.14
+php.ini used: /etc/php5/cli/php.ini
+WP-CLI root dir: /home/wp-cli/.wp-cli
WP-CLI packages dir: /home/wp-cli/.wp-cli/packages/
-WP-CLI global config:
-WP-CLI project config: /home/wp-cli/wp-cli.yml
-WP-CLI version: 2.12.0
+WP-CLI global config: /home/wp-cli/.wp-cli/config.yml
+WP-CLI project config:
+WP-CLI version: 0.25.0
```
### Aktualisieren
-Du kannst WP-CLI mittels `wp cli update` ([Dok.](https://developer.wordpress.org/cli/commands/cli/update/) (engl.)) aktualisieren oder indem du die obigen Installationsschritte wiederholst.
+Du kannst WP-CLI mittels `wp cli update` ([doc](https://wp-cli.org/commands/cli/update/)) aktualisieren oder indem du die obigen Installationsschritte wiederholst.
-Wenn WP-CLI dem root-Benutzer oder einem anderen Systembenutzer gehört, musst du `sudo wp cli update` ausführen.
-
-Lebst du gerne gefährlich? Führe `wp cli update --nightly` aus, um den letzten Nightly Build von WP-CLI zu benutzen. Der Nightly Build ist mehr oder weniger stabil genug für die Nutzung in deiner Entwicklungsumgebung und enthält jeweils die neusten und besten Funktionen von WP-CLI.
+Lebst du gerne gefährlich? Führe `wp cli update --nightly` aus um den aktuellsten Nightly Build von WP-CLI zu nutzen. Der Nightly Build ist mehr oder weniger stabil genug für die Nutzung in deiner Entwicklungsumgebung und enthält jeweils die neusten und besten Features von WP-CLI.
### Tab-Vervollständigung
-Für WP-CLI gibt es auch ein Skript zur Autovervollständigung von Befehlen für Bash und ZSH. Lade einfach die [wp-completion.bash](https://raw.githubusercontent.com/wp-cli/wp-cli/v2.12.0/utils/wp-completion.bash) herunter und referenziere sie in der `~/.bash_profile`-Datei:
+Für WP-CLI gibt es auch ein Skript zur Autovervollständigung von Befehlen für Bash und ZSH. Lade einfach [wp-completion.bash](https://github.com/wp-cli/wp-cli/raw/master/utils/wp-completion.bash) herunter und referenziere es in der `~/.bash_profile` Datei:
```bash
-source /ABSOLUTER/PFAD/ZUR/wp-completion.bash
+source /FULL/PATH/TO/wp-completion.bash
```
Vergiss nicht, danach `source ~/.bash_profile` auszuführen.
-Wenn du zsh für deine Shell benutzt, musst du möglicherweise erst `bashcompinit` laden und starten, bevor du den `source`-Befehl nutzt. Füge das folgende in deine `.zshrc` ein:
-
-```bash
-autoload bashcompinit
-bashcompinit
-source /ABSOLUTER/PFAD/ZUR/wp-completion.bash
-```
-
## Support
-Die Betreuer und Mitwirkenden hinter WP-CLI sind Freiwillige und haben nur begrenzt Zeit, um generelle Supportanfragen zu beantworten. Die [aktuelle Version von WP-CLI](https://make.wordpress.org/cli/handbook/roadmap/) (engl.) ist die einzig offizielle unterstützte Version.
-
-Prüfe zunächst, ob es bereits auf einer dieser Seiten eine Antwort auf deine Frage gibt:
+Die Betreuer und Mitwirkenden hinter WP-CLI sind Freiwillige und haben nur begrenzt Zeit um generelle Supportanfragen zu beantworten. Prüfe zunächst, ob es bereits an einem dieser Orte eine Antwort auf deine Frage gibt:
-- [Gängige Probleme und deren Lösungen](https://make.wordpress.org/cli/handbook/common-issues/) (engl.)
-* [WP-CLI-Handbuch](https://make.wordpress.org/cli/handbook/) (engl.)
-* [Offene oder geschlossene Probleme in der WP-CLI-GitHub-Organisation](https://github.com/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+org%3Awp-cli+is%3Aissue) (engl.)
-* [Themen mit dem Tag 'WP-CLI' im WordPress.org-Supportforum](https://wordpress.org/support/topic-tag/wp-cli/) (engl.)
-* [Fragen mit dem Tag 'WP-CLI' im WordPress-StackExchange](https://wordpress.stackexchange.com/questions/tagged/wp-cli) (engl.)
+- [Gängige Fehler und deren Lösungen](https://wp-cli.org/docs/common-issues/)
+- [Best Practices beim Erstellen eines Bug Reports](https://wp-cli.org/docs/bug-reports/)
+- [Dokumentationsportal](https://wp-cli.org/docs/)
+- [Offene oder geschlossene Issues auf Github](https://github.com/wp-cli/wp-cli/issues?utf8=%E2%9C%93&q=is%3Aissue)
+- [WordPress StackExchange Foren](http://wordpress.stackexchange.com/questions/tagged/wp-cli)
-Wenn du auf keiner dieser Seiten eine Antwort findest, kannst du folgendes tun:
+Wenn du auf keiner dieser Seiten eine Antwort finden kannst, trete dem `#cli` Channel des [WordPress.org Slack Teams](https://make.wordpress.org/chat/) bei um zu sehen, ob ein Community-Mitglied dir weiterhelfen kann. Professionelle Benutzer können auch [runcommand](https://runcommand.io/) für Premium Support in Betracht ziehen.
-* Tritt dem `#cli`-Kanal im [WordPress.org Slack](https://make.wordpress.org/chat/) (engl.) bei, um mit jemandem zu chatten, der gerade da ist. Das ist die beste Möglichkeit für kleine Fragen.
-* [Erstelle ein neues Thema](https://wordpress.org/support/forum/wp-advanced/#new-post) (engl.) im WordPress.org-Supportforum und füge den Tag 'WP-CLI' hinzu, sodass die Community es sieht.
+GitHub Issues sind nur für das Verwalten von Erweiterungen und Bugs existierender Befehle gedacht, nicht allgemeinen Support. Schau dir [unsere Best Practices](https://wp-cli.org/docs/bug-reports/) an, bevor du einen Bug meldest, damit dein Issue in angemessener Zeit bearbeitet werden kann.
-GitHub Issues sind nur für das Verwalten von Erweiterungen und Bugs existierender Befehle gedacht, nicht für allgemeinen Support. Sieh dir [unsere Best Practices](https://make.wordpress.org/cli/handbook/bug-reports/) (engl.) an, bevor du einen Fehler meldest, damit dein Issue in angemessener Zeit bearbeitet werden kann.
+Bitte stell keine Supportfragen auf Twitter. Twitter ist kein akzeptabler Ort für Support weil: 1) es ist schwierig Konversationen unter 140 Zeichen zu führen und 2) Twitter ist kein Ort, wo jemand mit der gleichen Frage frühere Antworten in einer Konversation finden kann.
-Bitte stell keine Supportfragen auf Twitter. Twitter ist kein akzeptabler Ort für Support weil: 1) es ist schwierig Konversationen unter 280 Zeichen zu führen und 2) Twitter ist kein Ort, an dem jemand mit der gleichen Frage frühere Antworten in einer Konversation finden kann.
-
-Denk daran, frei != gratis. Die Open-Source-Lizenz garantiert dir die Freiheit zur Nutzung und Bearbeitung, aber nicht anderer Leute Zeit. Bitte sei respektvoll und setze deine Erwartungen dementsprechend.
+Denk daran, frei != gratis. Die Open Source Lizenz garantiert dir die Freiheit zur Nutzung und Bearbeitung, aber nicht anderer Leute Zeit. Bitte sei respektvoll und setze deine Erwartungen dementsprechend.
## Erweitern
-Ein **Befehl** ist die atomare Einheit der WP-CLI Funktionalität. `wp plugin install` ([Dok.](https://developer.wordpress.org/cli/commands/plugin/install/) (engl.)) ist ein Befehl. `wp plugin activate` ([Dok.](https://developer.wordpress.org/cli/commands/plugin/activate/) (engl.)) ist ein anderer.
+Ein **Befehl** ist die atomare Einheit der WP-CLI Funktionalität. `wp plugin install` ([doc](https://wp-cli.org/commands/plugin/install/)) ist ein solcher Befehl. `wp plugin activate` ([doc](https://wp-cli.org/commands/plugin/activate/)) ein anderer.
-WP-CLI unterstützt das Registrieren jeder aufrufbaren Klasse, Funktion oder Closure als Befehl. Es liest die Informationen zur Nutzung aus der PHPdoc des Callbacks aus. `WP_CLI::add_command()` ([Dok.](https://make.wordpress.org/cli/handbook/internal-api/wp-cli-add-command/) (engl.)) wird sowohl für die Registrierung interner als auch für Befehle von Dritten verwendet.
+WP-CLI unterstützt das Registrieren jeder aufrufbaren Klasse, Funktion oder Closure als Befehl. Es liest die Informationen zur Nutzung aus der PHPdoc des Callbacks aus. `WP_CLI::add_command()` ([doc](https://wp-cli.org/docs/internal-api/wp-cli-add-command/)) wird sowohl für die Registration interner Befehle als auch für Befehle von Dritten verwendet.
```php
/**
@@ -197,32 +148,36 @@ $delete_option_cmd = function( $args ) {
WP_CLI::add_command( 'option delete', $delete_option_cmd );
```
-WP-CLI enthält Dutzende Befehle. Es ist auch einfacher, als es aussieht, eigene Befehle zu erstellen. Lies dazu das [Befehle-Kochbuch](https://make.wordpress.org/cli/handbook/commands-cookbook/) (engl.), um mehr zu erfahren. Stöbere in der [internen API-Dokumentation](https://make.wordpress.org/cli/handbook/internal-api/) (engl.), um eine Vielzahl hilfreicher Funktionen zu entdecken, die du in deinem eigenen WP-CLI Befehl benutzen kannst.
+WP-CLI enthält Dutzende Befehle. Es ist auch sehr einfach eigene Befehle zu erstellen. Lies dazu das [Commands Cookbook](https://wp-cli.org/docs/commands-cookbook/) um mehr zu erfahren. Stöbere in der [internen API-Dokumentation](https://wp-cli.org/docs/internal-api/) um eine Vielzahl hilfreicher Funktionen zu entdecken, welche du in deinem eigenen WP-CLI Befehl nutzen kannst.
## Mitwirken
-Wir schätzen es sehr, dass du interessiert bist, an WP-CLI mitzuwirken. Nur wegen dir und der Community um dich herum ist WP-CLI so ein tolles Projekt.
+Willkommen und danke!
+
+Wir schätzen es sehr, dass du interessiert bist an WP-CLI mitzuwirken. Nur wegen dir und der Community um dich herum ist WP-CLI so ein tolles Projekt.
-**Mitwirken beschränkt sich nicht nur auf’s Programmieren.** Wir möchten dich dazu ermutigen, das beizutragen, was du am besten kannst. Sei es durch das Schreiben von Tutorials, das Vorstellen von WP-CLI bei einem lokalen Meetup, anderen Nutzern bei ihren Supportfragen zu helfen oder unsere Dokumentation zu pflegen.
+**Mitwirken beschränkt sich nicht nur aufs Programmieren.** Wir möchten dich dazu ermutigen, das beizutragen, was du am besten kannst. Sei es durch das Schreiben von Tutorials, das Vorstellen von WP-CLI an einem lokalen Meetup, anderen Nutzern bei ihren Supportfragen zu helfen oder unsere Dokumentation zu pflegen.
-Lies unsere [Guidelines im Handbuch](https://make.wordpress.org/cli/handbook/contributing/) (engl.), um eine Einführung zu bekommen, wie du mitwirken kannst. Das Einhalten dieser Guidelines zeigt, dass du die Zeit respektierst, die andere in dieses Projekt investieren. Im Gegensatz werden andere Betreuer rund um den Globus diesen Respekt erwidern.
+Nimm dir bitte einen Moment Zeit um [unsere Guidelines in Ruhe durchzulesen](https://wp-cli.org/docs/contributing/). Das Einhalten dieser Guidelines zeigt, dass du die Zeit respektierst, welche andere in dieses Projekt investieren. Im Gegensatz werden andere Betreuer rund um den Globus diesen Respekt erwidern.
## Projektleitung
-WP-CLI hat einen Projektbetreuer: [schlessera](https://github.com/schlessera) (engl.).
+WP-CLI wird von folgenden Personen geleitet:
-Gelegentlich [vergeben wir Schreibzugriff an Mitwirkende](https://make.wordpress.org/cli/handbook/committers-credo/), die über längere Zeit gezeigt haben, dass sie in der Lage sind, in das Projekt zu investieren und es voranzubringen.
+* [Daniel Bachhuber](https://github.com/danielbachhuber/) - aktueller Betreuer
+* [Cristi Burcă](https://github.com/scribu) - vorheriger Betreuer
+* [Andreas Creten](https://github.com/andreascreten) - Gründer
-Lies dir das [Verwaltungsdokument im Handbuch](https://make.wordpress.org/cli/handbook/governance/) (engl.) für mehr operative Informationen bezüglich dieses Projekts durch.
+Lies mehr über die [Projektstruktur](https://wp-cli.org/docs/governance/) und schau dir die [komplette Liste von Mitwirkenden](https://github.com/wp-cli/wp-cli/contributors) an.
## Credits
-Neben den Bibliotheken, die in der [composer.json](composer.json)-Datei erwähnt werden, benutzen wir Code oder Ideen von folgenden Projekten:
+Neben den Bibliotheken, die in der [composer.json](composer.json) Datei erwähnt werden, nutzen wir Code oder Ideen von folgenden Projekten:
-* [Drush](https://github.com/drush-ops/drush) (engl.) für… viele Dinge
-* [wpshell](https://code.trac.wordpress.org/browser/wpshell) (engl.) für `wp shell`
-* [Regenerate Thumbnails](https://de.wordpress.org/plugins/regenerate-thumbnails/) für `wp media regenerate`
-* [Search-Replace-DB](https://github.com/interconnectit/Search-Replace-DB) (engl.) für `wp search-replace`
-* [WordPress-CLI-Exporter](https://github.com/Automattic/WordPress-CLI-Exporter) (engl.) für `wp export`
-* [WordPress-CLI-Importer](https://github.com/Automattic/WordPress-CLI-Importer) (engl.) für `wp import`
-* [wordpress-plugin-tests](https://github.com/benbalter/wordpress-plugin-tests/) (engl.) für `wp scaffold plugin-tests`
+* [Drush](http://drush.ws/) für... viele Dinge
+* [wpshell](http://code.trac.wordpress.org/browser/wpshell) für `wp shell`
+* [Regenerate Thumbnails](http://wordpress.org/plugins/regenerate-thumbnails/) für `wp media regenerate`
+* [Search-Replace-DB](https://github.com/interconnectit/Search-Replace-DB) für `wp search-replace`
+* [WordPress-CLI-Exporter](https://github.com/Automattic/WordPress-CLI-Exporter) für `wp export`
+* [WordPress-CLI-Importer](https://github.com/Automattic/WordPress-CLI-Importer) für `wp import`
+* [wordpress-plugin-tests](https://github.com/benbalter/wordpress-plugin-tests/) für `wp scaffold plugin-tests`
diff --git a/docs/index.md b/docs/index.md
deleted file mode 100644
index 34f08659..00000000
--- a/docs/index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-redirect_to:
- - https://make.wordpress.org/cli/handbook/
----
diff --git a/es/index.md b/es/index.md
deleted file mode 100644
index 67bcc591..00000000
--- a/es/index.md
+++ /dev/null
@@ -1,212 +0,0 @@
----
-layout: default
-title: Interfaz de línea de comandos para WordPress
-direction: ltr
----
-
-[WP-CLI](https://wp-cli.org/) es la interfaz de línea de comandos para [WordPress](https://es.wordpress.org/). Puedes actualizar plugins, configurar instalaciones multisitio y mucho más, sin usar un navegador web.
-
-El mantenimiento continuo es posible gracias a:
-
-
-
-
-
-
-
-
-La versión estable actual es la [2.12.0](https://make.wordpress.org/cli/2025/05/07/wp-cli-v2-12-0-release-notes/). Para estar al día, sigue [@wpcli en Twitter](https://twitter.com/wpcli) o [regístrate para recibir actualizaciones por correo electrónico](https://make.wordpress.org/cli/subscribe/). [Consulta la hoja de ruta](https://make.wordpress.org/cli/handbook/roadmap/) para una visión general de lo que está planeado para las próximas versiones.
-
-[](https://github.com/wp-cli/automated-tests/actions/workflows/testing.yml) [](https://isitmaintained.com/project/wp-cli/wp-cli "Average time to resolve an issue") [](https://isitmaintained.com/project/wp-cli/wp-cli "Percentage of issues still open")
-
-Enlaces rápidos: [Uso](#uso) | [Instalación](#instalación) | [Soporte](#soporte) | [Extender](#extender) | [Contribuir](#contribuir) | [Créditos](#créditos)
-
-## Uso
-
-WP-CLI proporciona una interfaz de línea de comandos para muchas acciones que puedes realizar en el escritorio de WordPress. Por ejemplo, `wp plugin install --activate` ([doc](https://developer.wordpress.org/cli/commands/plugin/install/)) te permite instalar y activar un plugin de WordPress:
-
-```bash
-$ wp plugin install user-switching --activate
-Installing User Switching (1.0.9)
-Downloading install package from https://downloads.wordpress.org/plugin/user-switching.1.0.9.zip...
-Unpacking the package...
-Installing the plugin...
-Plugin installed successfully.
-Activating 'user-switching'...
-Plugin 'user-switching' activated.
-Success: Installed 1 of 1 plugins.
-```
-
-WP-CLI también incluye comandos para muchas cosas que no puedes hacer en el escritorio de WordPress. Por ejemplo, `wp transient delete --all` ([doc](https://developer.wordpress.org/cli/commands/transient/delete/)) te permite eliminar uno o todos los datos transitorios:
-
-```bash
-$ wp transient delete --all
-Success: 34 transients deleted from the database.
-```
-
-Para una introducción más completa para usar WP-CLI, lee la [guía de inicio rápido](https://make.wordpress.org/cli/handbook/quick-start/). O bien, ponte al día con los [*shell friends*](https://make.wordpress.org/cli/handbook/shell-friends/) para aprender acerca de las utilidades de línea de comandos.
-
-¿Ya te sientes cómodo con lo básico? Ve a la [lista completa de comandos](https://developer.wordpress.org/cli/commands/) para obtener información detallada sobre la gestión de temas y plugins, importación y exportación de datos, realización de operaciones de búsqueda y reemplazo de bases de datos, y más.
-
-## Instalación
-
-La descarga del archivo Phar es nuestro método de instalación recomendado para la mayoría de usuarios. Si lo necesitas, consulta también nuestra documentación acerca de [métodos de instalación alternativos](https://wp-cli.org/docs/installing/) ([Composer](https://make.wordpress.org/cli/handbook/installing/#installing-via-composer), [Homebrew](https://make.wordpress.org/cli/handbook/installing/#installing-via-homebrew), [Docker](https://make.wordpress.org/cli/handbook/installing/#installing-via-docker)).
-
-Antes de instalar WP-CLI, asegúrate de que tu entorno cumple con los requisitos mínimos:
-
-- Entorno de tipo UNIX (OS X, Linux, FreeBSD, Cygwin); soporte limitado en el entorno de Windows
-- PHP 5.6 o posterior
-- WordPress 3.7 o posterior. Las versiones anteriores a la última versión de WordPress pueden tener funcionalidad degradada
-
-Una vez que hayas verificado los requisitos, descarga el archivo [wp-cli.phar](https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) usando `wget` o `curl` :
-
-```bash
-curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
-```
-
-A continuación, comprueba el archivo Phar para verificar que está funcionando:
-
-```bash
-php wp-cli.phar --info
-```
-
-Para usar WP-CLI desde la línea de comandos tecleando `wp`, haz que el archivo sea ejecutable y muévelo a algún lugar de tu `PATH`. Por ejemplo:
-
-```bash
-chmod +x wp-cli.phar
-sudo mv wp-cli.phar /usr/local/bin/wp
-```
-
-Si WP-CLI se instaló correctamente, deberías ver algo como esto cuando ejecutas `wp --info`:
-
-```bash
-$ wp --info
-OS: Linux 4.19.128-microsoft-standard #1 SMP Tue Jun 23 12:58:10 UTC 2020 x86_64
-Shell: /usr/bin/zsh
-PHP binary: /usr/bin/php
-PHP version: 8.0.5
-php.ini used: /etc/php/8.0/cli/php.ini
-MySQL binary: /usr/bin/mysql
-MySQL version: mysql Ver 8.0.23-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
-SQL modes:
-WP-CLI root dir: /home/wp-cli/
-WP-CLI vendor dir: /home/wp-cli/vendor
-WP_CLI phar path:
-WP-CLI packages dir: /home/wp-cli/.wp-cli/packages/
-WP-CLI global config:
-WP-CLI project config: /home/wp-cli/wp-cli.yml
-WP-CLI version: 2.12.0
-```
-
-### Actualización
-
-Puedes actualizar WP-CLI con `wp cli update` ([doc](https://developer.wordpress.org/cli/commands/cli/update/)), o repitiendo los pasos de instalación.
-
-Si WP-CLI es propiedad de root u otro usuario del sistema, necesitarás ejecutar `sudo wp cli update`.
-
-¿Quieres vivir la vida al límite? Ejecuta `wp cli update --nightly` para usar la última compilación nocturna (nightly build) de WP-CLI. Una compilación nocturna es más o menos lo suficientemente estable como para que puedas utilizarla en tu entorno de desarrollo, y siempre incluye las últimas y mejores características de WP-CLI.
-
-### Autocompletar con el tabulador
-
-WP-CLI también viene con un scripts para autocompletar con el tabulador para Bash y ZSH. Tan sólo descarga [wp-completion.bash](https://raw.githubusercontent.com/wp-cli/wp-cli/v2.12.0/utils/wp-completion.bash) y usa el comando `source` desde `~/.bash_profile`:
-
-```bash
-source /FULL/PATH/TO/wp-completion.bash
-```
-
-No te olvides de ejecutar `source ~/.bash_profile` después.
-
-Si usa la shell zsh, es posible que debas cargar e iniciar `bashcompinit` antes de usar el comando `source`. Pon lo siguiente en tu `.zshrc`:
-
-```bash
-autoload bashcompinit
-bashcompinit
-source /RUTA/COMPLETA/HASTA/wp-completion.bash
-```
-
-## Soporte
-
-Tanto los que mantienen WP-CLI como sus colaboradores tienen disponibilidad limitada para responder preguntas generales de soporte. La [versión actual de WP-CLI](https://make.wordpress.org/cli/handbook/roadmap/) es la única versión oficialmente soportada.
-
-Cuando busques ayuda, primero busca tu pregunta en estos lugares:
-
-* [Problemas comunes y sus soluciones](https://make.wordpress.org/cli/handbook/common-issues/)
-* [Manual de WP-CLI (Handbook)](https://make.wordpress.org/cli/handbook/)
-* [*Issues* abiertos o cerrados en la organización de WP-CLI en GitHub](https://github.com/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+org%3Awp-cli+is%3Aissue)
-* [Hilos etiquetados con «WP-CLI» en el foro de soporte de WordPress.org](https://wordpress.org/support/topic-tag/wp-cli/)
-* [Preguntas etiquetadas con «WP-CLI» en WordPress Development Stack Exchange](https://wordpress.stackexchange.com/questions/tagged/wp-cli)
-
-Si no encontraste una respuesta en uno de los lugares anteriores, puedes:
-
-* Únirte al canal `#cli` en el [Slack de WordPress.org](https://make.wordpress.org/chat/) para chatear con quien esté disponible en ese momento. Esta opción es la mejor para preguntas rápidas.
-* [Publicar un nuevo hilo](https://wordpress.org/support/forum/wp-advanced/#new-post) en el foro de soporte de WordPress.org y etiquetarlo como «WP-CLI» para que lo vea la comunidad.
-
-Los *issues* de GitHub están destinados al seguimiento de mejoras y errores de los comandos existentes, no para soporte general. Antes de enviar un informe de errores, por favor, [revisa nuestras mejores prácticas](https://make.wordpress.org/cli/handbook/bug-reports/) para ayudar a garantizar que tu *issue* se resuelva de manera oportuna.
-
-Por favor, no hagas preguntas de soporte en Twitter. Twitter no es un lugar aceptable para el soporte porque: 1) es difícil mantener conversaciones con menos de 280 caracteres, y 2) Twitter no es un lugar donde alguien con tu misma pregunta pueda buscar una respuesta en una conversación previa.
-
-Recuerda, libre != gratis; la licencia open source te da la libertad de usar y modificar, pero no a expensas del tiempo de otras personas. Por favor, se respetuoso y establece tus expectativas en consecuencia.
-
-## Extender
-
-Un **comando** es la unidad atómica de la funcionalidad de WP-CLI. `wp plugin install` ([doc](https://developer.wordpress.org/cli/commands/plugin/install/)) es un comando. `wp plugin activate` ([doc](https://developer.wordpress.org/cli/commands/plugin/activate/)) es otro.
-
-WP-CLI permite registrar cualquier clase, función o *closure* invocable como un comando. Este lee los detalles de uso del PHPdoc de la devolución de llamada. `WP_CLI::add_command()` ([doc](https://make.wordpress.org/cli/handbook/internal-api/wp-cli-add-command/)) se utiliza tanto para el registro de comandos internos como de terceros.
-
-```php
-/**
- * Delete an option from the database.
- *
- * Returns an error if the option didn't exist.
- *
- * ## OPTIONS
- *
- *









