-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme based on new success messages
- Loading branch information
1 parent
8f7ceb7
commit 78dda34
Showing
2 changed files
with
18 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3353,11 +3353,11 @@ wp signup | |
|
||
# Activate signup. | ||
$ wp signup activate 2 | ||
Success: Signup activated. Password: bZFSGsfzb9xs | ||
Success: Signup 2 activated. Password: bZFSGsfzb9xs | ||
|
||
# Delete signup. | ||
$ wp signup delete 3 | ||
Success: Signup deleted. | ||
Success: Signup 3 deleted. | ||
|
||
|
||
|
||
|
@@ -3378,7 +3378,7 @@ wp signup activate <signup> | |
|
||
# Activate signup. | ||
$ wp signup activate 2 | ||
Success: Signup activated. Password: bZFSGsfzb9xs | ||
Success: Signup 2 activated. Password: bZFSGsfzb9xs | ||
|
||
|
||
|
||
|
@@ -3399,7 +3399,7 @@ wp signup delete <signup> | |
|
||
# Delete signup. | ||
$ wp signup delete 3 | ||
Success: Signup deleted. | ||
Success: Signup 3 deleted. | ||
|
||
|
||
|
||
|
@@ -3436,12 +3436,11 @@ wp signup get <signup> [--field=<field>] [--fields=<fields>] [--format=<format>] | |
**EXAMPLES** | ||
|
||
# Get signup. | ||
$ wp signup get 1 | ||
+-----------+------------+---------------------+---------------------+--------+------------------+ | ||
| signup_id | user_login | user_email | registered | active | activation_key | | ||
+-----------+------------+---------------------+---------------------+--------+------------------+ | ||
| 1 | bobuser | [email protected] | 2024-03-13 05:46:53 | 1 | 663b5af63dd930fd | | ||
+-----------+------------+---------------------+---------------------+--------+------------------+ | ||
$ wp signup get 1 --field=user_login | ||
bobuser | ||
|
||
# Get signup and export to JSON file. | ||
$ wp signup get bobuser --format=json > bobuser.json | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,11 +20,11 @@ | |
* | ||
* # Activate signup. | ||
* $ wp signup activate 2 | ||
* Success: Signup activated. Password: bZFSGsfzb9xs | ||
* Success: Signup 2 activated. Password: bZFSGsfzb9xs | ||
* | ||
* # Delete signup. | ||
* $ wp signup delete 3 | ||
* Success: Signup deleted. | ||
* Success: Signup 3 deleted. | ||
* | ||
* @package wp-cli | ||
*/ | ||
|
@@ -177,12 +177,11 @@ public function list_( $args, $assoc_args ) { | |
* ## EXAMPLES | ||
* | ||
* # Get signup. | ||
* $ wp signup get 1 | ||
* +-----------+------------+---------------------+---------------------+--------+------------------+ | ||
* | signup_id | user_login | user_email | registered | active | activation_key | | ||
* +-----------+------------+---------------------+---------------------+--------+------------------+ | ||
* | 1 | bobuser | [email protected] | 2024-03-13 05:46:53 | 1 | 663b5af63dd930fd | | ||
* +-----------+------------+---------------------+---------------------+--------+------------------+ | ||
* $ wp signup get 1 --field=user_login | ||
* bobuser | ||
* | ||
* # Get signup and export to JSON file. | ||
* $ wp signup get bobuser --format=json > bobuser.json | ||
* | ||
* @package wp-cli | ||
*/ | ||
|
@@ -210,7 +209,7 @@ public function get( $args, $assoc_args ) { | |
* | ||
* # Activate signup. | ||
* $ wp signup activate 2 | ||
* Success: Signup activated. Password: bZFSGsfzb9xs | ||
* Success: Signup 2 activated. Password: bZFSGsfzb9xs | ||
* | ||
* @package wp-cli | ||
*/ | ||
|
@@ -240,7 +239,7 @@ public function activate( $args, $assoc_args ) { | |
* | ||
* # Delete signup. | ||
* $ wp signup delete 3 | ||
* Success: Signup deleted. | ||
* Success: Signup 3 deleted. | ||
* | ||
* @package wp-cli | ||
*/ | ||
|