Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Subsequent uses of command will use the local cache if it still exists.
Runs the standard WordPress installation process.

~~~
wp core install --url=<url> --title=<site-title> --admin_user=<username> [--admin_password=<password>] --admin_email=<email> [--locale=<locale>] [--skip-email]
wp core install --url=<url> --title=<site-title> --admin_user=<username> [--admin_password|admin_pass=<password>] --admin_email=<email> [--locale=<locale>] [--skip-email]
Comment thread
swissspidy marked this conversation as resolved.
~~~

Creates the WordPress tables in the database using the URL, title, and
Expand Down Expand Up @@ -201,7 +201,7 @@ user_login doesn't exist, a new user will be created.
--admin_user=<username>
The name of the admin user.

[--admin_password=<password>]
[--admin_password|admin_pass=<password>]
Comment thread
swissspidy marked this conversation as resolved.
The password for the admin user. Defaults to randomly generated string.

--admin_email=<email>
Expand Down
2 changes: 1 addition & 1 deletion src/Core_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ public function is_installed( $args, $assoc_args ) {
* --admin_user=<username>
* : The name of the admin user.
*
* [--admin_password=<password>]
* [--admin_password|admin_pass=<password>]
Comment thread
swissspidy marked this conversation as resolved.
* : The password for the admin user. Defaults to randomly generated string.
*
* --admin_email=<email>
Expand Down
Loading