Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contr
wp find <path> [--skip-ignored-paths] [--include_ignored_paths=<paths>] [--max_depth=<max-depth>] [--fields=<fields>] [--field=<field>] [--format=<format>] [--verbose]
~~~

Recursively iterates subdirectories of provided `<path>` to find and
Recursively iterates subdirectories of provided <path> to find and
report WordPress installations. A WordPress installation is a wp-includes
directory with a version.php file.

Expand Down Expand Up @@ -85,11 +85,19 @@ These fields are optionally available:

## Installing

Installing this package requires WP-CLI 2 or greater. Update to the latest stable release with `wp cli update`.
Installing this package requires WP-CLI v2 or greater. Update to the latest stable release with `wp cli update`.

Once you've done so, you can install this package with:
Once you've done so, you can install the latest stable version of this package with:

wp package install git@github.com:wp-cli/find-command.git
```bash
wp package install wp-cli/find-command:@stable
```

To install the latest development version of this package, use the following command instead:

```bash
wp package install wp-cli/find-command:dev-master
```

## Contributing

Expand All @@ -115,7 +123,7 @@ Once you've decided to commit the time to seeing your pull request through, [ple

## Support

Github issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support
GitHub issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support


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