├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── code-quality.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── command.php ├── commands-manifest.json ├── handbook-manifest.json ├── install_packages.sh └── templates │ ├── behat-steps-list.mustache │ ├── behat-steps.mustache │ ├── internal-api-list.mustache │ ├── internal-api.mustache │ └── subcmd-list.mustache ├── commands ├── admin.md ├── cache.md ├── cache │ ├── add.md │ ├── decr.md │ ├── delete.md │ ├── flush-group.md │ ├── flush.md │ ├── get.md │ ├── incr.md │ ├── patch.md │ ├── pluck.md │ ├── replace.md │ ├── set.md │ ├── supports.md │ └── type.md ├── cap.md ├── cap │ ├── add.md │ ├── list.md │ └── remove.md ├── cli.md ├── cli │ ├── alias.md │ ├── alias │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── is-group.md │ │ ├── list.md │ │ └── update.md │ ├── cache.md │ ├── cache │ │ ├── clear.md │ │ └── prune.md │ ├── check-update.md │ ├── cmd-dump.md │ ├── completions.md │ ├── has-command.md │ ├── info.md │ ├── param-dump.md │ ├── update.md │ └── version.md ├── comment.md ├── comment │ ├── approve.md │ ├── count.md │ ├── create.md │ ├── delete.md │ ├── exists.md │ ├── generate.md │ ├── get.md │ ├── list.md │ ├── meta.md │ ├── meta │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── recount.md │ ├── spam.md │ ├── status.md │ ├── trash.md │ ├── unapprove.md │ ├── unspam.md │ ├── untrash.md │ └── update.md ├── config.md ├── config │ ├── create.md │ ├── delete.md │ ├── edit.md │ ├── get.md │ ├── has.md │ ├── is-true.md │ ├── list.md │ ├── path.md │ ├── set.md │ └── shuffle-salts.md ├── core.md ├── core │ ├── check-update.md │ ├── download.md │ ├── install.md │ ├── is-installed.md │ ├── multisite-convert.md │ ├── multisite-install.md │ ├── update-db.md │ ├── update.md │ ├── verify-checksums.md │ └── version.md ├── cron.md ├── cron │ ├── event.md │ ├── event │ │ ├── delete.md │ │ ├── list.md │ │ ├── run.md │ │ ├── schedule.md │ │ └── unschedule.md │ ├── schedule.md │ ├── schedule │ │ └── list.md │ └── test.md ├── db.md ├── db │ ├── check.md │ ├── clean.md │ ├── cli.md │ ├── columns.md │ ├── create.md │ ├── drop.md │ ├── export.md │ ├── import.md │ ├── optimize.md │ ├── prefix.md │ ├── query.md │ ├── repair.md │ ├── reset.md │ ├── search.md │ ├── size.md │ └── tables.md ├── dist-archive.md ├── embed.md ├── embed │ ├── cache.md │ ├── cache │ │ ├── clear.md │ │ ├── find.md │ │ └── trigger.md │ ├── fetch.md │ ├── handler.md │ ├── handler │ │ └── list.md │ ├── provider.md │ └── provider │ │ ├── list.md │ │ └── match.md ├── eval-file.md ├── eval.md ├── export.md ├── find.md ├── help.md ├── i18n.md ├── i18n │ ├── make-json.md │ ├── make-mo.md │ ├── make-php.md │ ├── make-pot.md │ └── update-po.md ├── import.md ├── language.md ├── language │ ├── core.md │ ├── core │ │ ├── activate.md │ │ ├── install.md │ │ ├── is-installed.md │ │ ├── list.md │ │ ├── uninstall.md │ │ └── update.md │ ├── plugin.md │ ├── plugin │ │ ├── install.md │ │ ├── is-installed.md │ │ ├── list.md │ │ ├── uninstall.md │ │ └── update.md │ ├── theme.md │ └── theme │ │ ├── install.md │ │ ├── is-installed.md │ │ ├── list.md │ │ ├── uninstall.md │ │ └── update.md ├── maintenance-mode.md ├── maintenance-mode │ ├── activate.md │ ├── deactivate.md │ ├── is-active.md │ └── status.md ├── media.md ├── media │ ├── fix-orientation.md │ ├── image-size.md │ ├── import.md │ └── regenerate.md ├── menu.md ├── menu │ ├── create.md │ ├── delete.md │ ├── item.md │ ├── item │ │ ├── add-custom.md │ │ ├── add-post.md │ │ ├── add-term.md │ │ ├── delete.md │ │ ├── list.md │ │ └── update.md │ ├── list.md │ ├── location.md │ └── location │ │ ├── assign.md │ │ ├── list.md │ │ └── remove.md ├── network.md ├── network │ ├── meta.md │ └── meta │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md ├── option.md ├── option │ ├── add.md │ ├── delete.md │ ├── get-autoload.md │ ├── get.md │ ├── list.md │ ├── patch.md │ ├── pluck.md │ ├── set-autoload.md │ └── update.md ├── package.md ├── package │ ├── browse.md │ ├── install.md │ ├── list.md │ ├── path.md │ ├── uninstall.md │ └── update.md ├── plugin.md ├── plugin │ ├── activate.md │ ├── auto-updates.md │ ├── auto-updates │ │ ├── disable.md │ │ ├── enable.md │ │ └── status.md │ ├── deactivate.md │ ├── delete.md │ ├── get.md │ ├── install.md │ ├── is-active.md │ ├── is-installed.md │ ├── list.md │ ├── path.md │ ├── search.md │ ├── status.md │ ├── toggle.md │ ├── uninstall.md │ ├── update.md │ └── verify-checksums.md ├── post-type.md ├── post-type │ ├── get.md │ └── list.md ├── post.md ├── post │ ├── create.md │ ├── delete.md │ ├── edit.md │ ├── exists.md │ ├── generate.md │ ├── get.md │ ├── list.md │ ├── meta.md │ ├── meta │ │ ├── add.md │ │ ├── clean-duplicates.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── term.md │ ├── term │ │ ├── add.md │ │ ├── list.md │ │ ├── remove.md │ │ └── set.md │ ├── update.md │ └── url-to-id.md ├── profile.md ├── profile │ ├── eval-file.md │ ├── eval.md │ ├── hook.md │ └── stage.md ├── rewrite.md ├── rewrite │ ├── flush.md │ ├── list.md │ └── structure.md ├── role.md ├── role │ ├── create.md │ ├── delete.md │ ├── exists.md │ ├── list.md │ └── reset.md ├── scaffold.md ├── scaffold │ ├── block.md │ ├── child-theme.md │ ├── plugin-tests.md │ ├── plugin.md │ ├── post-type.md │ ├── taxonomy.md │ ├── theme-tests.md │ └── underscores.md ├── search-replace.md ├── server.md ├── shell.md ├── sidebar.md ├── sidebar │ └── list.md ├── site.md ├── site │ ├── activate.md │ ├── archive.md │ ├── create.md │ ├── deactivate.md │ ├── delete.md │ ├── empty.md │ ├── generate.md │ ├── list.md │ ├── mature.md │ ├── meta.md │ ├── meta │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── option.md │ ├── option │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── private.md │ ├── public.md │ ├── spam.md │ ├── switch-language.md │ ├── unarchive.md │ ├── unmature.md │ └── unspam.md ├── super-admin.md ├── super-admin │ ├── add.md │ ├── list.md │ └── remove.md ├── taxonomy.md ├── taxonomy │ ├── get.md │ └── list.md ├── term.md ├── term │ ├── create.md │ ├── delete.md │ ├── generate.md │ ├── get.md │ ├── list.md │ ├── meta.md │ ├── meta │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── migrate.md │ ├── recount.md │ └── update.md ├── theme.md ├── theme │ ├── activate.md │ ├── auto-updates.md │ ├── auto-updates │ │ ├── disable.md │ │ ├── enable.md │ │ └── status.md │ ├── delete.md │ ├── disable.md │ ├── enable.md │ ├── get.md │ ├── install.md │ ├── is-active.md │ ├── is-installed.md │ ├── list.md │ ├── mod.md │ ├── mod │ │ ├── get.md │ │ ├── list.md │ │ ├── remove.md │ │ └── set.md │ ├── path.md │ ├── search.md │ ├── status.md │ └── update.md ├── transient.md ├── transient │ ├── delete.md │ ├── get.md │ ├── list.md │ ├── patch.md │ ├── pluck.md │ ├── set.md │ └── type.md ├── user.md ├── user │ ├── add-cap.md │ ├── add-role.md │ ├── application-password.md │ ├── application-password │ │ ├── create.md │ │ ├── delete.md │ │ ├── exists.md │ │ ├── get.md │ │ ├── list.md │ │ ├── record-usage.md │ │ └── update.md │ ├── check-password.md │ ├── create.md │ ├── delete.md │ ├── exists.md │ ├── generate.md │ ├── get.md │ ├── import-csv.md │ ├── list-caps.md │ ├── list.md │ ├── meta.md │ ├── meta │ │ ├── add.md │ │ ├── delete.md │ │ ├── get.md │ │ ├── list.md │ │ ├── patch.md │ │ ├── pluck.md │ │ └── update.md │ ├── remove-cap.md │ ├── remove-role.md │ ├── reset-password.md │ ├── session.md │ ├── session │ │ ├── destroy.md │ │ └── list.md │ ├── set-role.md │ ├── signup.md │ ├── signup │ │ ├── activate.md │ │ ├── delete.md │ │ ├── get.md │ │ └── list.md │ ├── spam.md │ ├── term.md │ ├── term │ │ ├── add.md │ │ ├── list.md │ │ ├── remove.md │ │ └── set.md │ ├── unspam.md │ └── update.md ├── widget.md └── widget │ ├── add.md │ ├── deactivate.md │ ├── delete.md │ ├── list.md │ ├── move.md │ ├── reset.md │ └── update.md ├── composer.json ├── contributions.md ├── contributions ├── bug-reports.md ├── code-review.md ├── committers-credo.md ├── contributing.md ├── contributor-day.md ├── governance.md ├── hack-day.md ├── implementation-details.md ├── philosophy.md ├── pull-requests.md ├── release-checklist.md ├── repository-management.md └── roadmap.md ├── guides.md ├── guides ├── commands-cookbook.md ├── common-issues.md ├── doctor.md ├── doctor │ ├── doctor-check-constant-value.md │ ├── doctor-check-file-contents.md │ ├── doctor-check-option-value.md │ ├── doctor-check-plugin-status.md │ ├── doctor-customize-config.md │ ├── doctor-default-checks.md │ └── doctor-write-custom-check.md ├── external-resources.md ├── force-output-specific-locale.md ├── installing.md ├── quick-start.md ├── running-commands-remotely.md ├── sharing-wp-cli-packages.md └── troubleshooting.md ├── how-to.md ├── how-to ├── how-to-create-custom-plugins.md ├── how-to-install.md ├── how-to-maintenance-mode.md ├── how-to-start-webserver.md ├── identify-plugin-theme-conflict.md └── plugin-unit-tests.md ├── index.md ├── phpcs.xml.dist ├── phpstan.neon.dist ├── references.md ├── references ├── argument-syntax.md ├── behat-steps.md ├── behat-steps │ ├── given-a-custom-wp-content-directory.md │ ├── given-a-database.md │ ├── given-a-dependency-on-current-wp-cli.md │ ├── given-a-downloaded-phar-with-the-same-version-version.md │ ├── given-a-misconfigured-wp-content-dir-constant-directory.md │ ├── given-a-new-phar-with-the-same-version-version.md │ ├── given-a-php-built-in-web-server-to-serve-subdir.md │ ├── given-a-php-built-in-web-server.md │ ├── given-a-wp-installation-in-subdir.md │ ├── given-a-wp-installation-with-composer-and-a-custom-vendor-directory-vendor-directory.md │ ├── given-a-wp-installation-with-composer.md │ ├── given-a-wp-installation.md │ ├── given-a-wp-multisite-subdirectory-subdomaininstall-installation.md │ ├── given-an-empty-cache.md │ ├── given-an-empty-directory.md │ ├── given-an-empty-non-existent-directory.md │ ├── given-an-file-cache-file.md │ ├── given-download.md │ ├── given-replaced-with-in-the-file.md │ ├── given-save-stdout-stderr-as.md │ ├── given-save-the-file-as.md │ ├── given-that-http-requests-to-will-respond-with.md │ ├── given-these-installed-and-active-plugins.md │ ├── given-wp-config-php.md │ ├── given-wp-files.md │ ├── then-an-email-should-be-sent-not-be-sent.md │ ├── then-stdout-should-be-a-json-array-containing.md │ ├── then-stdout-should-be-a-table-containing-rows.md │ ├── then-stdout-should-be-csv-containing.md │ ├── then-stdout-should-be-json-containing.md │ ├── then-stdout-should-be-yaml-containing.md │ ├── then-stdout-should-end-with-a-table-containing-rows.md │ ├── then-stdout-stderr-should-be-a-number.md │ ├── then-stdout-stderr-should-be-a-version-string-w.md │ ├── then-stdout-stderr-should-be-empty.md │ ├── then-stdout-stderr-should-not-be-a-number.md │ ├── then-stdout-stderr-should-not-be-empty.md │ ├── then-stdout-stderr-should-not-match.md │ ├── then-stdout-stderr-should-strictly-be-contain-not-contain.md │ ├── then-the-contents-of-the-file-should-not-match.md │ ├── then-the-file-directory-should-strictly-exist-not-exist-be-contain-not-contain.md │ ├── then-the-http-status-code-should-be-code.md │ ├── then-the-return-code-should-not-be.md │ ├── when-i-launch-in-the-background.md │ ├── when-i-run-try-from.md │ ├── when-i-run-try-the-previous-command-again.md │ └── when-i-run-try.md ├── config.md ├── documentation-standards.md ├── hosting-companies.md ├── internal-api.md ├── internal-api │ ├── wp-cli-add-command.md │ ├── wp-cli-add-hook.md │ ├── wp-cli-add-wp-hook.md │ ├── wp-cli-colorize.md │ ├── wp-cli-confirm.md │ ├── wp-cli-debug.md │ ├── wp-cli-do-hook.md │ ├── wp-cli-error-multi-line.md │ ├── wp-cli-error.md │ ├── wp-cli-get-config.md │ ├── wp-cli-get-php-binary.md │ ├── wp-cli-halt.md │ ├── wp-cli-has-config.md │ ├── wp-cli-launch-self.md │ ├── wp-cli-launch.md │ ├── wp-cli-line.md │ ├── wp-cli-log.md │ ├── wp-cli-read-value.md │ ├── wp-cli-run-command.md │ ├── wp-cli-runcommand.md │ ├── wp-cli-success.md │ ├── wp-cli-utils-basename.md │ ├── wp-cli-utils-esc-like.md │ ├── wp-cli-utils-format-items.md │ ├── wp-cli-utils-get-flag-value.md │ ├── wp-cli-utils-get-home-dir.md │ ├── wp-cli-utils-get-named-sem-ver.md │ ├── wp-cli-utils-get-php-binary.md │ ├── wp-cli-utils-get-temp-dir.md │ ├── wp-cli-utils-http-request.md │ ├── wp-cli-utils-ispiped.md │ ├── wp-cli-utils-launch-editor-for-input.md │ ├── wp-cli-utils-make-progress-bar.md │ ├── wp-cli-utils-normalize-path.md │ ├── wp-cli-utils-parse-ssh-url.md │ ├── wp-cli-utils-parse-str-to-argv.md │ ├── wp-cli-utils-proc-open-compat.md │ ├── wp-cli-utils-report-batch-operation-results.md │ ├── wp-cli-utils-trailingslashit.md │ ├── wp-cli-utils-write-csv.md │ └── wp-cli-warning.md ├── shell-friends.md └── tools.md └── wp-cli.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @wp-cli/committers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/README.md -------------------------------------------------------------------------------- /bin/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/command.php -------------------------------------------------------------------------------- /bin/commands-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/commands-manifest.json -------------------------------------------------------------------------------- /bin/handbook-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/handbook-manifest.json -------------------------------------------------------------------------------- /bin/install_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/install_packages.sh -------------------------------------------------------------------------------- /bin/templates/behat-steps-list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/templates/behat-steps-list.mustache -------------------------------------------------------------------------------- /bin/templates/behat-steps.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/templates/behat-steps.mustache -------------------------------------------------------------------------------- /bin/templates/internal-api-list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/templates/internal-api-list.mustache -------------------------------------------------------------------------------- /bin/templates/internal-api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/templates/internal-api.mustache -------------------------------------------------------------------------------- /bin/templates/subcmd-list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/bin/templates/subcmd-list.mustache -------------------------------------------------------------------------------- /commands/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/admin.md -------------------------------------------------------------------------------- /commands/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache.md -------------------------------------------------------------------------------- /commands/cache/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/add.md -------------------------------------------------------------------------------- /commands/cache/decr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/decr.md -------------------------------------------------------------------------------- /commands/cache/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/delete.md -------------------------------------------------------------------------------- /commands/cache/flush-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/flush-group.md -------------------------------------------------------------------------------- /commands/cache/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/flush.md -------------------------------------------------------------------------------- /commands/cache/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/get.md -------------------------------------------------------------------------------- /commands/cache/incr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/incr.md -------------------------------------------------------------------------------- /commands/cache/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/patch.md -------------------------------------------------------------------------------- /commands/cache/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/pluck.md -------------------------------------------------------------------------------- /commands/cache/replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/replace.md -------------------------------------------------------------------------------- /commands/cache/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/set.md -------------------------------------------------------------------------------- /commands/cache/supports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/supports.md -------------------------------------------------------------------------------- /commands/cache/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cache/type.md -------------------------------------------------------------------------------- /commands/cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cap.md -------------------------------------------------------------------------------- /commands/cap/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cap/add.md -------------------------------------------------------------------------------- /commands/cap/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cap/list.md -------------------------------------------------------------------------------- /commands/cap/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cap/remove.md -------------------------------------------------------------------------------- /commands/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli.md -------------------------------------------------------------------------------- /commands/cli/alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias.md -------------------------------------------------------------------------------- /commands/cli/alias/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/add.md -------------------------------------------------------------------------------- /commands/cli/alias/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/delete.md -------------------------------------------------------------------------------- /commands/cli/alias/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/get.md -------------------------------------------------------------------------------- /commands/cli/alias/is-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/is-group.md -------------------------------------------------------------------------------- /commands/cli/alias/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/list.md -------------------------------------------------------------------------------- /commands/cli/alias/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/alias/update.md -------------------------------------------------------------------------------- /commands/cli/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/cache.md -------------------------------------------------------------------------------- /commands/cli/cache/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/cache/clear.md -------------------------------------------------------------------------------- /commands/cli/cache/prune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/cache/prune.md -------------------------------------------------------------------------------- /commands/cli/check-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/check-update.md -------------------------------------------------------------------------------- /commands/cli/cmd-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/cmd-dump.md -------------------------------------------------------------------------------- /commands/cli/completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/completions.md -------------------------------------------------------------------------------- /commands/cli/has-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/has-command.md -------------------------------------------------------------------------------- /commands/cli/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/info.md -------------------------------------------------------------------------------- /commands/cli/param-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/param-dump.md -------------------------------------------------------------------------------- /commands/cli/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/update.md -------------------------------------------------------------------------------- /commands/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cli/version.md -------------------------------------------------------------------------------- /commands/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment.md -------------------------------------------------------------------------------- /commands/comment/approve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/approve.md -------------------------------------------------------------------------------- /commands/comment/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/count.md -------------------------------------------------------------------------------- /commands/comment/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/create.md -------------------------------------------------------------------------------- /commands/comment/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/delete.md -------------------------------------------------------------------------------- /commands/comment/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/exists.md -------------------------------------------------------------------------------- /commands/comment/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/generate.md -------------------------------------------------------------------------------- /commands/comment/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/get.md -------------------------------------------------------------------------------- /commands/comment/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/list.md -------------------------------------------------------------------------------- /commands/comment/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta.md -------------------------------------------------------------------------------- /commands/comment/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/add.md -------------------------------------------------------------------------------- /commands/comment/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/delete.md -------------------------------------------------------------------------------- /commands/comment/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/get.md -------------------------------------------------------------------------------- /commands/comment/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/list.md -------------------------------------------------------------------------------- /commands/comment/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/patch.md -------------------------------------------------------------------------------- /commands/comment/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/pluck.md -------------------------------------------------------------------------------- /commands/comment/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/meta/update.md -------------------------------------------------------------------------------- /commands/comment/recount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/recount.md -------------------------------------------------------------------------------- /commands/comment/spam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/spam.md -------------------------------------------------------------------------------- /commands/comment/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/status.md -------------------------------------------------------------------------------- /commands/comment/trash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/trash.md -------------------------------------------------------------------------------- /commands/comment/unapprove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/unapprove.md -------------------------------------------------------------------------------- /commands/comment/unspam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/unspam.md -------------------------------------------------------------------------------- /commands/comment/untrash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/untrash.md -------------------------------------------------------------------------------- /commands/comment/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/comment/update.md -------------------------------------------------------------------------------- /commands/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config.md -------------------------------------------------------------------------------- /commands/config/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/create.md -------------------------------------------------------------------------------- /commands/config/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/delete.md -------------------------------------------------------------------------------- /commands/config/edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/edit.md -------------------------------------------------------------------------------- /commands/config/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/get.md -------------------------------------------------------------------------------- /commands/config/has.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/has.md -------------------------------------------------------------------------------- /commands/config/is-true.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/is-true.md -------------------------------------------------------------------------------- /commands/config/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/list.md -------------------------------------------------------------------------------- /commands/config/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/path.md -------------------------------------------------------------------------------- /commands/config/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/set.md -------------------------------------------------------------------------------- /commands/config/shuffle-salts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/config/shuffle-salts.md -------------------------------------------------------------------------------- /commands/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core.md -------------------------------------------------------------------------------- /commands/core/check-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/check-update.md -------------------------------------------------------------------------------- /commands/core/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/download.md -------------------------------------------------------------------------------- /commands/core/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/install.md -------------------------------------------------------------------------------- /commands/core/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/is-installed.md -------------------------------------------------------------------------------- /commands/core/multisite-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/multisite-convert.md -------------------------------------------------------------------------------- /commands/core/multisite-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/multisite-install.md -------------------------------------------------------------------------------- /commands/core/update-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/update-db.md -------------------------------------------------------------------------------- /commands/core/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/update.md -------------------------------------------------------------------------------- /commands/core/verify-checksums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/verify-checksums.md -------------------------------------------------------------------------------- /commands/core/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/core/version.md -------------------------------------------------------------------------------- /commands/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron.md -------------------------------------------------------------------------------- /commands/cron/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event.md -------------------------------------------------------------------------------- /commands/cron/event/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event/delete.md -------------------------------------------------------------------------------- /commands/cron/event/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event/list.md -------------------------------------------------------------------------------- /commands/cron/event/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event/run.md -------------------------------------------------------------------------------- /commands/cron/event/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event/schedule.md -------------------------------------------------------------------------------- /commands/cron/event/unschedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/event/unschedule.md -------------------------------------------------------------------------------- /commands/cron/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/schedule.md -------------------------------------------------------------------------------- /commands/cron/schedule/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/schedule/list.md -------------------------------------------------------------------------------- /commands/cron/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/cron/test.md -------------------------------------------------------------------------------- /commands/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db.md -------------------------------------------------------------------------------- /commands/db/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/check.md -------------------------------------------------------------------------------- /commands/db/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/clean.md -------------------------------------------------------------------------------- /commands/db/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/cli.md -------------------------------------------------------------------------------- /commands/db/columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/columns.md -------------------------------------------------------------------------------- /commands/db/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/create.md -------------------------------------------------------------------------------- /commands/db/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/drop.md -------------------------------------------------------------------------------- /commands/db/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/export.md -------------------------------------------------------------------------------- /commands/db/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/import.md -------------------------------------------------------------------------------- /commands/db/optimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/optimize.md -------------------------------------------------------------------------------- /commands/db/prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/prefix.md -------------------------------------------------------------------------------- /commands/db/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/query.md -------------------------------------------------------------------------------- /commands/db/repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/repair.md -------------------------------------------------------------------------------- /commands/db/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/reset.md -------------------------------------------------------------------------------- /commands/db/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/search.md -------------------------------------------------------------------------------- /commands/db/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/size.md -------------------------------------------------------------------------------- /commands/db/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/db/tables.md -------------------------------------------------------------------------------- /commands/dist-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/dist-archive.md -------------------------------------------------------------------------------- /commands/embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed.md -------------------------------------------------------------------------------- /commands/embed/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/cache.md -------------------------------------------------------------------------------- /commands/embed/cache/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/cache/clear.md -------------------------------------------------------------------------------- /commands/embed/cache/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/cache/find.md -------------------------------------------------------------------------------- /commands/embed/cache/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/cache/trigger.md -------------------------------------------------------------------------------- /commands/embed/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/fetch.md -------------------------------------------------------------------------------- /commands/embed/handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/handler.md -------------------------------------------------------------------------------- /commands/embed/handler/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/handler/list.md -------------------------------------------------------------------------------- /commands/embed/provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/provider.md -------------------------------------------------------------------------------- /commands/embed/provider/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/provider/list.md -------------------------------------------------------------------------------- /commands/embed/provider/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/embed/provider/match.md -------------------------------------------------------------------------------- /commands/eval-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/eval-file.md -------------------------------------------------------------------------------- /commands/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/eval.md -------------------------------------------------------------------------------- /commands/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/export.md -------------------------------------------------------------------------------- /commands/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/find.md -------------------------------------------------------------------------------- /commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/help.md -------------------------------------------------------------------------------- /commands/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n.md -------------------------------------------------------------------------------- /commands/i18n/make-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n/make-json.md -------------------------------------------------------------------------------- /commands/i18n/make-mo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n/make-mo.md -------------------------------------------------------------------------------- /commands/i18n/make-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n/make-php.md -------------------------------------------------------------------------------- /commands/i18n/make-pot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n/make-pot.md -------------------------------------------------------------------------------- /commands/i18n/update-po.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/i18n/update-po.md -------------------------------------------------------------------------------- /commands/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/import.md -------------------------------------------------------------------------------- /commands/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language.md -------------------------------------------------------------------------------- /commands/language/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core.md -------------------------------------------------------------------------------- /commands/language/core/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/activate.md -------------------------------------------------------------------------------- /commands/language/core/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/install.md -------------------------------------------------------------------------------- /commands/language/core/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/is-installed.md -------------------------------------------------------------------------------- /commands/language/core/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/list.md -------------------------------------------------------------------------------- /commands/language/core/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/uninstall.md -------------------------------------------------------------------------------- /commands/language/core/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/core/update.md -------------------------------------------------------------------------------- /commands/language/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin.md -------------------------------------------------------------------------------- /commands/language/plugin/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin/install.md -------------------------------------------------------------------------------- /commands/language/plugin/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin/is-installed.md -------------------------------------------------------------------------------- /commands/language/plugin/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin/list.md -------------------------------------------------------------------------------- /commands/language/plugin/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin/uninstall.md -------------------------------------------------------------------------------- /commands/language/plugin/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/plugin/update.md -------------------------------------------------------------------------------- /commands/language/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme.md -------------------------------------------------------------------------------- /commands/language/theme/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme/install.md -------------------------------------------------------------------------------- /commands/language/theme/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme/is-installed.md -------------------------------------------------------------------------------- /commands/language/theme/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme/list.md -------------------------------------------------------------------------------- /commands/language/theme/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme/uninstall.md -------------------------------------------------------------------------------- /commands/language/theme/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/language/theme/update.md -------------------------------------------------------------------------------- /commands/maintenance-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/maintenance-mode.md -------------------------------------------------------------------------------- /commands/maintenance-mode/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/maintenance-mode/activate.md -------------------------------------------------------------------------------- /commands/maintenance-mode/deactivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/maintenance-mode/deactivate.md -------------------------------------------------------------------------------- /commands/maintenance-mode/is-active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/maintenance-mode/is-active.md -------------------------------------------------------------------------------- /commands/maintenance-mode/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/maintenance-mode/status.md -------------------------------------------------------------------------------- /commands/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/media.md -------------------------------------------------------------------------------- /commands/media/fix-orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/media/fix-orientation.md -------------------------------------------------------------------------------- /commands/media/image-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/media/image-size.md -------------------------------------------------------------------------------- /commands/media/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/media/import.md -------------------------------------------------------------------------------- /commands/media/regenerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/media/regenerate.md -------------------------------------------------------------------------------- /commands/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu.md -------------------------------------------------------------------------------- /commands/menu/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/create.md -------------------------------------------------------------------------------- /commands/menu/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/delete.md -------------------------------------------------------------------------------- /commands/menu/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item.md -------------------------------------------------------------------------------- /commands/menu/item/add-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/add-custom.md -------------------------------------------------------------------------------- /commands/menu/item/add-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/add-post.md -------------------------------------------------------------------------------- /commands/menu/item/add-term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/add-term.md -------------------------------------------------------------------------------- /commands/menu/item/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/delete.md -------------------------------------------------------------------------------- /commands/menu/item/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/list.md -------------------------------------------------------------------------------- /commands/menu/item/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/item/update.md -------------------------------------------------------------------------------- /commands/menu/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/list.md -------------------------------------------------------------------------------- /commands/menu/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/location.md -------------------------------------------------------------------------------- /commands/menu/location/assign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/location/assign.md -------------------------------------------------------------------------------- /commands/menu/location/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/location/list.md -------------------------------------------------------------------------------- /commands/menu/location/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/menu/location/remove.md -------------------------------------------------------------------------------- /commands/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network.md -------------------------------------------------------------------------------- /commands/network/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta.md -------------------------------------------------------------------------------- /commands/network/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/add.md -------------------------------------------------------------------------------- /commands/network/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/delete.md -------------------------------------------------------------------------------- /commands/network/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/get.md -------------------------------------------------------------------------------- /commands/network/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/list.md -------------------------------------------------------------------------------- /commands/network/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/patch.md -------------------------------------------------------------------------------- /commands/network/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/pluck.md -------------------------------------------------------------------------------- /commands/network/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/network/meta/update.md -------------------------------------------------------------------------------- /commands/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option.md -------------------------------------------------------------------------------- /commands/option/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/add.md -------------------------------------------------------------------------------- /commands/option/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/delete.md -------------------------------------------------------------------------------- /commands/option/get-autoload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/get-autoload.md -------------------------------------------------------------------------------- /commands/option/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/get.md -------------------------------------------------------------------------------- /commands/option/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/list.md -------------------------------------------------------------------------------- /commands/option/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/patch.md -------------------------------------------------------------------------------- /commands/option/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/pluck.md -------------------------------------------------------------------------------- /commands/option/set-autoload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/set-autoload.md -------------------------------------------------------------------------------- /commands/option/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/option/update.md -------------------------------------------------------------------------------- /commands/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package.md -------------------------------------------------------------------------------- /commands/package/browse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/browse.md -------------------------------------------------------------------------------- /commands/package/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/install.md -------------------------------------------------------------------------------- /commands/package/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/list.md -------------------------------------------------------------------------------- /commands/package/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/path.md -------------------------------------------------------------------------------- /commands/package/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/uninstall.md -------------------------------------------------------------------------------- /commands/package/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/package/update.md -------------------------------------------------------------------------------- /commands/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin.md -------------------------------------------------------------------------------- /commands/plugin/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/activate.md -------------------------------------------------------------------------------- /commands/plugin/auto-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/auto-updates.md -------------------------------------------------------------------------------- /commands/plugin/auto-updates/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/auto-updates/disable.md -------------------------------------------------------------------------------- /commands/plugin/auto-updates/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/auto-updates/enable.md -------------------------------------------------------------------------------- /commands/plugin/auto-updates/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/auto-updates/status.md -------------------------------------------------------------------------------- /commands/plugin/deactivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/deactivate.md -------------------------------------------------------------------------------- /commands/plugin/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/delete.md -------------------------------------------------------------------------------- /commands/plugin/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/get.md -------------------------------------------------------------------------------- /commands/plugin/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/install.md -------------------------------------------------------------------------------- /commands/plugin/is-active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/is-active.md -------------------------------------------------------------------------------- /commands/plugin/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/is-installed.md -------------------------------------------------------------------------------- /commands/plugin/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/list.md -------------------------------------------------------------------------------- /commands/plugin/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/path.md -------------------------------------------------------------------------------- /commands/plugin/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/search.md -------------------------------------------------------------------------------- /commands/plugin/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/status.md -------------------------------------------------------------------------------- /commands/plugin/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/toggle.md -------------------------------------------------------------------------------- /commands/plugin/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/uninstall.md -------------------------------------------------------------------------------- /commands/plugin/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/update.md -------------------------------------------------------------------------------- /commands/plugin/verify-checksums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/plugin/verify-checksums.md -------------------------------------------------------------------------------- /commands/post-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post-type.md -------------------------------------------------------------------------------- /commands/post-type/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post-type/get.md -------------------------------------------------------------------------------- /commands/post-type/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post-type/list.md -------------------------------------------------------------------------------- /commands/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post.md -------------------------------------------------------------------------------- /commands/post/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/create.md -------------------------------------------------------------------------------- /commands/post/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/delete.md -------------------------------------------------------------------------------- /commands/post/edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/edit.md -------------------------------------------------------------------------------- /commands/post/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/exists.md -------------------------------------------------------------------------------- /commands/post/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/generate.md -------------------------------------------------------------------------------- /commands/post/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/get.md -------------------------------------------------------------------------------- /commands/post/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/list.md -------------------------------------------------------------------------------- /commands/post/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta.md -------------------------------------------------------------------------------- /commands/post/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/add.md -------------------------------------------------------------------------------- /commands/post/meta/clean-duplicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/clean-duplicates.md -------------------------------------------------------------------------------- /commands/post/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/delete.md -------------------------------------------------------------------------------- /commands/post/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/get.md -------------------------------------------------------------------------------- /commands/post/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/list.md -------------------------------------------------------------------------------- /commands/post/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/patch.md -------------------------------------------------------------------------------- /commands/post/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/pluck.md -------------------------------------------------------------------------------- /commands/post/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/meta/update.md -------------------------------------------------------------------------------- /commands/post/term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/term.md -------------------------------------------------------------------------------- /commands/post/term/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/term/add.md -------------------------------------------------------------------------------- /commands/post/term/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/term/list.md -------------------------------------------------------------------------------- /commands/post/term/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/term/remove.md -------------------------------------------------------------------------------- /commands/post/term/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/term/set.md -------------------------------------------------------------------------------- /commands/post/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/update.md -------------------------------------------------------------------------------- /commands/post/url-to-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/post/url-to-id.md -------------------------------------------------------------------------------- /commands/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/profile.md -------------------------------------------------------------------------------- /commands/profile/eval-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/profile/eval-file.md -------------------------------------------------------------------------------- /commands/profile/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/profile/eval.md -------------------------------------------------------------------------------- /commands/profile/hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/profile/hook.md -------------------------------------------------------------------------------- /commands/profile/stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/profile/stage.md -------------------------------------------------------------------------------- /commands/rewrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/rewrite.md -------------------------------------------------------------------------------- /commands/rewrite/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/rewrite/flush.md -------------------------------------------------------------------------------- /commands/rewrite/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/rewrite/list.md -------------------------------------------------------------------------------- /commands/rewrite/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/rewrite/structure.md -------------------------------------------------------------------------------- /commands/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role.md -------------------------------------------------------------------------------- /commands/role/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role/create.md -------------------------------------------------------------------------------- /commands/role/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role/delete.md -------------------------------------------------------------------------------- /commands/role/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role/exists.md -------------------------------------------------------------------------------- /commands/role/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role/list.md -------------------------------------------------------------------------------- /commands/role/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/role/reset.md -------------------------------------------------------------------------------- /commands/scaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold.md -------------------------------------------------------------------------------- /commands/scaffold/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/block.md -------------------------------------------------------------------------------- /commands/scaffold/child-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/child-theme.md -------------------------------------------------------------------------------- /commands/scaffold/plugin-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/plugin-tests.md -------------------------------------------------------------------------------- /commands/scaffold/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/plugin.md -------------------------------------------------------------------------------- /commands/scaffold/post-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/post-type.md -------------------------------------------------------------------------------- /commands/scaffold/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/taxonomy.md -------------------------------------------------------------------------------- /commands/scaffold/theme-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/theme-tests.md -------------------------------------------------------------------------------- /commands/scaffold/underscores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/scaffold/underscores.md -------------------------------------------------------------------------------- /commands/search-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/search-replace.md -------------------------------------------------------------------------------- /commands/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/server.md -------------------------------------------------------------------------------- /commands/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/shell.md -------------------------------------------------------------------------------- /commands/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/sidebar.md -------------------------------------------------------------------------------- /commands/sidebar/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/sidebar/list.md -------------------------------------------------------------------------------- /commands/site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site.md -------------------------------------------------------------------------------- /commands/site/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/activate.md -------------------------------------------------------------------------------- /commands/site/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/archive.md -------------------------------------------------------------------------------- /commands/site/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/create.md -------------------------------------------------------------------------------- /commands/site/deactivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/deactivate.md -------------------------------------------------------------------------------- /commands/site/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/delete.md -------------------------------------------------------------------------------- /commands/site/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/empty.md -------------------------------------------------------------------------------- /commands/site/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/generate.md -------------------------------------------------------------------------------- /commands/site/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/list.md -------------------------------------------------------------------------------- /commands/site/mature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/mature.md -------------------------------------------------------------------------------- /commands/site/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta.md -------------------------------------------------------------------------------- /commands/site/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/add.md -------------------------------------------------------------------------------- /commands/site/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/delete.md -------------------------------------------------------------------------------- /commands/site/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/get.md -------------------------------------------------------------------------------- /commands/site/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/list.md -------------------------------------------------------------------------------- /commands/site/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/patch.md -------------------------------------------------------------------------------- /commands/site/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/pluck.md -------------------------------------------------------------------------------- /commands/site/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/meta/update.md -------------------------------------------------------------------------------- /commands/site/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option.md -------------------------------------------------------------------------------- /commands/site/option/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/add.md -------------------------------------------------------------------------------- /commands/site/option/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/delete.md -------------------------------------------------------------------------------- /commands/site/option/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/get.md -------------------------------------------------------------------------------- /commands/site/option/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/list.md -------------------------------------------------------------------------------- /commands/site/option/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/patch.md -------------------------------------------------------------------------------- /commands/site/option/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/pluck.md -------------------------------------------------------------------------------- /commands/site/option/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/option/update.md -------------------------------------------------------------------------------- /commands/site/private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/private.md -------------------------------------------------------------------------------- /commands/site/public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/public.md -------------------------------------------------------------------------------- /commands/site/spam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/spam.md -------------------------------------------------------------------------------- /commands/site/switch-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/switch-language.md -------------------------------------------------------------------------------- /commands/site/unarchive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/unarchive.md -------------------------------------------------------------------------------- /commands/site/unmature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/unmature.md -------------------------------------------------------------------------------- /commands/site/unspam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/site/unspam.md -------------------------------------------------------------------------------- /commands/super-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/super-admin.md -------------------------------------------------------------------------------- /commands/super-admin/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/super-admin/add.md -------------------------------------------------------------------------------- /commands/super-admin/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/super-admin/list.md -------------------------------------------------------------------------------- /commands/super-admin/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/super-admin/remove.md -------------------------------------------------------------------------------- /commands/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/taxonomy.md -------------------------------------------------------------------------------- /commands/taxonomy/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/taxonomy/get.md -------------------------------------------------------------------------------- /commands/taxonomy/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/taxonomy/list.md -------------------------------------------------------------------------------- /commands/term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term.md -------------------------------------------------------------------------------- /commands/term/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/create.md -------------------------------------------------------------------------------- /commands/term/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/delete.md -------------------------------------------------------------------------------- /commands/term/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/generate.md -------------------------------------------------------------------------------- /commands/term/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/get.md -------------------------------------------------------------------------------- /commands/term/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/list.md -------------------------------------------------------------------------------- /commands/term/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta.md -------------------------------------------------------------------------------- /commands/term/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/add.md -------------------------------------------------------------------------------- /commands/term/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/delete.md -------------------------------------------------------------------------------- /commands/term/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/get.md -------------------------------------------------------------------------------- /commands/term/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/list.md -------------------------------------------------------------------------------- /commands/term/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/patch.md -------------------------------------------------------------------------------- /commands/term/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/pluck.md -------------------------------------------------------------------------------- /commands/term/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/meta/update.md -------------------------------------------------------------------------------- /commands/term/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/migrate.md -------------------------------------------------------------------------------- /commands/term/recount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/recount.md -------------------------------------------------------------------------------- /commands/term/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/term/update.md -------------------------------------------------------------------------------- /commands/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme.md -------------------------------------------------------------------------------- /commands/theme/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/activate.md -------------------------------------------------------------------------------- /commands/theme/auto-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/auto-updates.md -------------------------------------------------------------------------------- /commands/theme/auto-updates/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/auto-updates/disable.md -------------------------------------------------------------------------------- /commands/theme/auto-updates/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/auto-updates/enable.md -------------------------------------------------------------------------------- /commands/theme/auto-updates/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/auto-updates/status.md -------------------------------------------------------------------------------- /commands/theme/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/delete.md -------------------------------------------------------------------------------- /commands/theme/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/disable.md -------------------------------------------------------------------------------- /commands/theme/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/enable.md -------------------------------------------------------------------------------- /commands/theme/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/get.md -------------------------------------------------------------------------------- /commands/theme/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/install.md -------------------------------------------------------------------------------- /commands/theme/is-active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/is-active.md -------------------------------------------------------------------------------- /commands/theme/is-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/is-installed.md -------------------------------------------------------------------------------- /commands/theme/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/list.md -------------------------------------------------------------------------------- /commands/theme/mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/mod.md -------------------------------------------------------------------------------- /commands/theme/mod/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/mod/get.md -------------------------------------------------------------------------------- /commands/theme/mod/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/mod/list.md -------------------------------------------------------------------------------- /commands/theme/mod/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/mod/remove.md -------------------------------------------------------------------------------- /commands/theme/mod/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/mod/set.md -------------------------------------------------------------------------------- /commands/theme/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/path.md -------------------------------------------------------------------------------- /commands/theme/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/search.md -------------------------------------------------------------------------------- /commands/theme/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/status.md -------------------------------------------------------------------------------- /commands/theme/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/theme/update.md -------------------------------------------------------------------------------- /commands/transient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient.md -------------------------------------------------------------------------------- /commands/transient/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/delete.md -------------------------------------------------------------------------------- /commands/transient/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/get.md -------------------------------------------------------------------------------- /commands/transient/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/list.md -------------------------------------------------------------------------------- /commands/transient/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/patch.md -------------------------------------------------------------------------------- /commands/transient/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/pluck.md -------------------------------------------------------------------------------- /commands/transient/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/set.md -------------------------------------------------------------------------------- /commands/transient/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/transient/type.md -------------------------------------------------------------------------------- /commands/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user.md -------------------------------------------------------------------------------- /commands/user/add-cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/add-cap.md -------------------------------------------------------------------------------- /commands/user/add-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/add-role.md -------------------------------------------------------------------------------- /commands/user/application-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password.md -------------------------------------------------------------------------------- /commands/user/application-password/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/create.md -------------------------------------------------------------------------------- /commands/user/application-password/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/delete.md -------------------------------------------------------------------------------- /commands/user/application-password/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/exists.md -------------------------------------------------------------------------------- /commands/user/application-password/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/get.md -------------------------------------------------------------------------------- /commands/user/application-password/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/list.md -------------------------------------------------------------------------------- /commands/user/application-password/record-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/record-usage.md -------------------------------------------------------------------------------- /commands/user/application-password/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/application-password/update.md -------------------------------------------------------------------------------- /commands/user/check-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/check-password.md -------------------------------------------------------------------------------- /commands/user/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/create.md -------------------------------------------------------------------------------- /commands/user/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/delete.md -------------------------------------------------------------------------------- /commands/user/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/exists.md -------------------------------------------------------------------------------- /commands/user/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/generate.md -------------------------------------------------------------------------------- /commands/user/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/get.md -------------------------------------------------------------------------------- /commands/user/import-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/import-csv.md -------------------------------------------------------------------------------- /commands/user/list-caps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/list-caps.md -------------------------------------------------------------------------------- /commands/user/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/list.md -------------------------------------------------------------------------------- /commands/user/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta.md -------------------------------------------------------------------------------- /commands/user/meta/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/add.md -------------------------------------------------------------------------------- /commands/user/meta/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/delete.md -------------------------------------------------------------------------------- /commands/user/meta/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/get.md -------------------------------------------------------------------------------- /commands/user/meta/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/list.md -------------------------------------------------------------------------------- /commands/user/meta/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/patch.md -------------------------------------------------------------------------------- /commands/user/meta/pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/pluck.md -------------------------------------------------------------------------------- /commands/user/meta/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/meta/update.md -------------------------------------------------------------------------------- /commands/user/remove-cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/remove-cap.md -------------------------------------------------------------------------------- /commands/user/remove-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/remove-role.md -------------------------------------------------------------------------------- /commands/user/reset-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/reset-password.md -------------------------------------------------------------------------------- /commands/user/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/session.md -------------------------------------------------------------------------------- /commands/user/session/destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/session/destroy.md -------------------------------------------------------------------------------- /commands/user/session/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/session/list.md -------------------------------------------------------------------------------- /commands/user/set-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/set-role.md -------------------------------------------------------------------------------- /commands/user/signup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/signup.md -------------------------------------------------------------------------------- /commands/user/signup/activate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/signup/activate.md -------------------------------------------------------------------------------- /commands/user/signup/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/signup/delete.md -------------------------------------------------------------------------------- /commands/user/signup/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/signup/get.md -------------------------------------------------------------------------------- /commands/user/signup/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/signup/list.md -------------------------------------------------------------------------------- /commands/user/spam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/spam.md -------------------------------------------------------------------------------- /commands/user/term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/term.md -------------------------------------------------------------------------------- /commands/user/term/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/term/add.md -------------------------------------------------------------------------------- /commands/user/term/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/term/list.md -------------------------------------------------------------------------------- /commands/user/term/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/term/remove.md -------------------------------------------------------------------------------- /commands/user/term/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/term/set.md -------------------------------------------------------------------------------- /commands/user/unspam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/unspam.md -------------------------------------------------------------------------------- /commands/user/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/user/update.md -------------------------------------------------------------------------------- /commands/widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget.md -------------------------------------------------------------------------------- /commands/widget/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/add.md -------------------------------------------------------------------------------- /commands/widget/deactivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/deactivate.md -------------------------------------------------------------------------------- /commands/widget/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/delete.md -------------------------------------------------------------------------------- /commands/widget/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/list.md -------------------------------------------------------------------------------- /commands/widget/move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/move.md -------------------------------------------------------------------------------- /commands/widget/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/reset.md -------------------------------------------------------------------------------- /commands/widget/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/commands/widget/update.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/composer.json -------------------------------------------------------------------------------- /contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions.md -------------------------------------------------------------------------------- /contributions/bug-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/bug-reports.md -------------------------------------------------------------------------------- /contributions/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/code-review.md -------------------------------------------------------------------------------- /contributions/committers-credo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/committers-credo.md -------------------------------------------------------------------------------- /contributions/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/contributing.md -------------------------------------------------------------------------------- /contributions/contributor-day.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/contributor-day.md -------------------------------------------------------------------------------- /contributions/governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/governance.md -------------------------------------------------------------------------------- /contributions/hack-day.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/hack-day.md -------------------------------------------------------------------------------- /contributions/implementation-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/implementation-details.md -------------------------------------------------------------------------------- /contributions/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/philosophy.md -------------------------------------------------------------------------------- /contributions/pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/pull-requests.md -------------------------------------------------------------------------------- /contributions/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/release-checklist.md -------------------------------------------------------------------------------- /contributions/repository-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/repository-management.md -------------------------------------------------------------------------------- /contributions/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/contributions/roadmap.md -------------------------------------------------------------------------------- /guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides.md -------------------------------------------------------------------------------- /guides/commands-cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/commands-cookbook.md -------------------------------------------------------------------------------- /guides/common-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/common-issues.md -------------------------------------------------------------------------------- /guides/doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor.md -------------------------------------------------------------------------------- /guides/doctor/doctor-check-constant-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-check-constant-value.md -------------------------------------------------------------------------------- /guides/doctor/doctor-check-file-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-check-file-contents.md -------------------------------------------------------------------------------- /guides/doctor/doctor-check-option-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-check-option-value.md -------------------------------------------------------------------------------- /guides/doctor/doctor-check-plugin-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-check-plugin-status.md -------------------------------------------------------------------------------- /guides/doctor/doctor-customize-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-customize-config.md -------------------------------------------------------------------------------- /guides/doctor/doctor-default-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-default-checks.md -------------------------------------------------------------------------------- /guides/doctor/doctor-write-custom-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/doctor/doctor-write-custom-check.md -------------------------------------------------------------------------------- /guides/external-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/external-resources.md -------------------------------------------------------------------------------- /guides/force-output-specific-locale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/force-output-specific-locale.md -------------------------------------------------------------------------------- /guides/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/installing.md -------------------------------------------------------------------------------- /guides/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/quick-start.md -------------------------------------------------------------------------------- /guides/running-commands-remotely.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/running-commands-remotely.md -------------------------------------------------------------------------------- /guides/sharing-wp-cli-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/sharing-wp-cli-packages.md -------------------------------------------------------------------------------- /guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/guides/troubleshooting.md -------------------------------------------------------------------------------- /how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to.md -------------------------------------------------------------------------------- /how-to/how-to-create-custom-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/how-to-create-custom-plugins.md -------------------------------------------------------------------------------- /how-to/how-to-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/how-to-install.md -------------------------------------------------------------------------------- /how-to/how-to-maintenance-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/how-to-maintenance-mode.md -------------------------------------------------------------------------------- /how-to/how-to-start-webserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/how-to-start-webserver.md -------------------------------------------------------------------------------- /how-to/identify-plugin-theme-conflict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/identify-plugin-theme-conflict.md -------------------------------------------------------------------------------- /how-to/plugin-unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/how-to/plugin-unit-tests.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/index.md -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references.md -------------------------------------------------------------------------------- /references/argument-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/argument-syntax.md -------------------------------------------------------------------------------- /references/behat-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-custom-wp-content-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-custom-wp-content-directory.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-database.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-dependency-on-current-wp-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-dependency-on-current-wp-cli.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-downloaded-phar-with-the-same-version-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-downloaded-phar-with-the-same-version-version.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-misconfigured-wp-content-dir-constant-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-misconfigured-wp-content-dir-constant-directory.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-new-phar-with-the-same-version-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-new-phar-with-the-same-version-version.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-php-built-in-web-server-to-serve-subdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-php-built-in-web-server-to-serve-subdir.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-php-built-in-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-php-built-in-web-server.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-wp-installation-in-subdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-wp-installation-in-subdir.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-wp-installation-with-composer-and-a-custom-vendor-directory-vendor-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-wp-installation-with-composer-and-a-custom-vendor-directory-vendor-directory.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-wp-installation-with-composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-wp-installation-with-composer.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-wp-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-wp-installation.md -------------------------------------------------------------------------------- /references/behat-steps/given-a-wp-multisite-subdirectory-subdomaininstall-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-a-wp-multisite-subdirectory-subdomaininstall-installation.md -------------------------------------------------------------------------------- /references/behat-steps/given-an-empty-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-an-empty-cache.md -------------------------------------------------------------------------------- /references/behat-steps/given-an-empty-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-an-empty-directory.md -------------------------------------------------------------------------------- /references/behat-steps/given-an-empty-non-existent-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-an-empty-non-existent-directory.md -------------------------------------------------------------------------------- /references/behat-steps/given-an-file-cache-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-an-file-cache-file.md -------------------------------------------------------------------------------- /references/behat-steps/given-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-download.md -------------------------------------------------------------------------------- /references/behat-steps/given-replaced-with-in-the-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-replaced-with-in-the-file.md -------------------------------------------------------------------------------- /references/behat-steps/given-save-stdout-stderr-as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-save-stdout-stderr-as.md -------------------------------------------------------------------------------- /references/behat-steps/given-save-the-file-as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-save-the-file-as.md -------------------------------------------------------------------------------- /references/behat-steps/given-that-http-requests-to-will-respond-with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-that-http-requests-to-will-respond-with.md -------------------------------------------------------------------------------- /references/behat-steps/given-these-installed-and-active-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-these-installed-and-active-plugins.md -------------------------------------------------------------------------------- /references/behat-steps/given-wp-config-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-wp-config-php.md -------------------------------------------------------------------------------- /references/behat-steps/given-wp-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/given-wp-files.md -------------------------------------------------------------------------------- /references/behat-steps/then-an-email-should-be-sent-not-be-sent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-an-email-should-be-sent-not-be-sent.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-be-a-json-array-containing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-be-a-json-array-containing.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-be-a-table-containing-rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-be-a-table-containing-rows.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-be-csv-containing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-be-csv-containing.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-be-json-containing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-be-json-containing.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-be-yaml-containing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-be-yaml-containing.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-should-end-with-a-table-containing-rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-should-end-with-a-table-containing-rows.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-be-a-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-be-a-number.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-be-a-version-string-w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-be-a-version-string-w.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-be-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-be-empty.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-not-be-a-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-not-be-a-number.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-not-be-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-not-be-empty.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-not-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-not-match.md -------------------------------------------------------------------------------- /references/behat-steps/then-stdout-stderr-should-strictly-be-contain-not-contain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-stdout-stderr-should-strictly-be-contain-not-contain.md -------------------------------------------------------------------------------- /references/behat-steps/then-the-contents-of-the-file-should-not-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-the-contents-of-the-file-should-not-match.md -------------------------------------------------------------------------------- /references/behat-steps/then-the-file-directory-should-strictly-exist-not-exist-be-contain-not-contain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-the-file-directory-should-strictly-exist-not-exist-be-contain-not-contain.md -------------------------------------------------------------------------------- /references/behat-steps/then-the-http-status-code-should-be-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-the-http-status-code-should-be-code.md -------------------------------------------------------------------------------- /references/behat-steps/then-the-return-code-should-not-be.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/then-the-return-code-should-not-be.md -------------------------------------------------------------------------------- /references/behat-steps/when-i-launch-in-the-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/when-i-launch-in-the-background.md -------------------------------------------------------------------------------- /references/behat-steps/when-i-run-try-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/when-i-run-try-from.md -------------------------------------------------------------------------------- /references/behat-steps/when-i-run-try-the-previous-command-again.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/when-i-run-try-the-previous-command-again.md -------------------------------------------------------------------------------- /references/behat-steps/when-i-run-try.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/behat-steps/when-i-run-try.md -------------------------------------------------------------------------------- /references/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/config.md -------------------------------------------------------------------------------- /references/documentation-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/documentation-standards.md -------------------------------------------------------------------------------- /references/hosting-companies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/hosting-companies.md -------------------------------------------------------------------------------- /references/internal-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-add-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-add-command.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-add-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-add-hook.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-add-wp-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-add-wp-hook.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-colorize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-colorize.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-confirm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-confirm.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-debug.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-do-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-do-hook.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-error-multi-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-error-multi-line.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-error.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-get-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-get-config.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-get-php-binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-get-php-binary.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-halt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-halt.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-has-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-has-config.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-launch-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-launch-self.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-launch.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-line.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-log.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-read-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-read-value.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-run-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-run-command.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-runcommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-runcommand.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-success.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-success.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-basename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-basename.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-esc-like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-esc-like.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-format-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-format-items.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-get-flag-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-get-flag-value.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-get-home-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-get-home-dir.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-get-named-sem-ver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-get-named-sem-ver.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-get-php-binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-get-php-binary.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-get-temp-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-get-temp-dir.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-http-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-http-request.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-ispiped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-ispiped.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-launch-editor-for-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-launch-editor-for-input.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-make-progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-make-progress-bar.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-normalize-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-normalize-path.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-parse-ssh-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-parse-ssh-url.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-parse-str-to-argv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-parse-str-to-argv.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-proc-open-compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-proc-open-compat.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-report-batch-operation-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-report-batch-operation-results.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-trailingslashit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-trailingslashit.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-utils-write-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-utils-write-csv.md -------------------------------------------------------------------------------- /references/internal-api/wp-cli-warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/internal-api/wp-cli-warning.md -------------------------------------------------------------------------------- /references/shell-friends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/shell-friends.md -------------------------------------------------------------------------------- /references/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-cli/handbook/HEAD/references/tools.md -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | require: 2 | - bin/command.php 3 | --------------------------------------------------------------------------------