diff --git a/README.md b/README.md index 89763945a..102ae6dff 100644 --- a/README.md +++ b/README.md @@ -5342,7 +5342,7 @@ These fields are optionally available: Lists all sites in a multisite installation. ~~~ -wp site list [--network=] [--=] [--site__in=] [--site_user=] [--site-path=] [--field=] [--fields=] [--format=] +wp site list [--network=] [--=] [--site__in=] [--site_user=] [--site-path=] [--blog_id=] [--site_id=] [--domain=] [--registered=] [--last_updated=] [--public=] [--archived=] [--mature=] [--spam=] [--deleted=] [--lang_id=] [--field=] [--fields=] [--format=] ~~~ **OPTIONS** @@ -5365,6 +5365,40 @@ wp site list [--network=] [--=] [--site__in=] [--site_u [--site-path=] Filter by path. Avoids conflict with the global `--path` parameter. + [--blog_id=] + Filter by site ID. + + [--site_id=] + Filter by the ID of the network the site belongs to. `--network` is an + alias for this, and takes precedence when both are given. + + [--domain=] + Filter by domain. + + [--registered=] + Filter by the date the site was registered. + + [--last_updated=] + Filter by the date the site was last updated. + + [--public=] + Filter by whether the site is public. Accepts 1 or 0. + + [--archived=] + Filter by whether the site is archived. Accepts 1 or 0. + + [--mature=] + Filter by whether the site is flagged as mature. Accepts 1 or 0. + + [--spam=] + Filter by whether the site is flagged as spam. Accepts 1 or 0. + + [--deleted=] + Filter by whether the site is flagged as deleted. Accepts 1 or 0. + + [--lang_id=] + Filter by language ID. + [--field=] Prints the value of a single field for each site. @@ -7343,7 +7377,7 @@ wp user application-password get [--field=] [--fields= [--=] [--field=] [--fields=] [--format=] [--orderby=] [--order=] +wp user application-password list [--=] [--uuid=] [--app_id=] [--name=] [--password=] [--created=] [--last_used=] [--last_ip=] [--field=] [--fields=] [--format=] [--orderby=] [--order=] ~~~ **OPTIONS** @@ -7354,6 +7388,29 @@ wp user application-password list [--=] [--field=] [ [--=] Filter the list by a specific field. + [--uuid=] + Filter by the universally unique ID of the application password. + + [--app_id=] + Filter by the application ID. `--app-id` is also accepted. + + [--name=] + Filter by the name of the application password. + + [--password=] + Filter by the hashed password. + + [--created=] + Filter by the Unix timestamp the application password was created at. + + [--last_used=] + Filter by the Unix timestamp the application password was last used at. + `--last-used` is also accepted. + + [--last_ip=] + Filter by the IP address the application password was last used from. + `--last-ip` is also accepted. + [--field=] Prints the value of a single field for each application password.