Skip to content

Commit 3b9695d

Browse files
committed
Regenerate README file - 2021-05-10
1 parent 94832fb commit 3b9695d

File tree

1 file changed

+39
-7
lines changed

1 file changed

+39
-7
lines changed

README.md

Lines changed: 39 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ wp-cli/extension-command
33

44
Manages plugins and themes, including installs, activations, and updates.
55

6-
[![Build Status](https://travis-ci.org/wp-cli/extension-command.svg?branch=master)](https://travis-ci.org/wp-cli/extension-command)
6+
[![Testing](https://github.com/wp-cli/extension-command/actions/workflows/testing.yml/badge.svg)](https://github.com/wp-cli/extension-command/actions/workflows/testing.yml)
77

88
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)
99

@@ -188,7 +188,7 @@ wp plugin get <plugin> [--field=<field>] [--fields=<fields>] [--format=<format>]
188188
Installs one or more plugins.
189189

190190
~~~
191-
wp plugin install <plugin|zip|url>... [--version=<version>] [--force] [--activate] [--activate-network]
191+
wp plugin install <plugin|zip|url>... [--version=<version>] [--force] [--activate] [--activate-network] [--insecure]
192192
~~~
193193

194194
**OPTIONS**
@@ -210,6 +210,9 @@ wp plugin install <plugin|zip|url>... [--version=<version>] [--force] [--activat
210210
[--activate-network]
211211
If set, the plugin will be network activated immediately after install
212212

213+
[--insecure]
214+
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
215+
213216
**EXAMPLES**
214217

215218
# Install the latest version from wordpress.org and activate
@@ -298,7 +301,7 @@ Returns exit code 0 when installed, 1 when uninstalled.
298301
Gets a list of plugins.
299302

300303
~~~
301-
wp plugin list [--<field>=<value>] [--field=<field>] [--fields=<fields>] [--format=<format>]
304+
wp plugin list [--<field>=<value>] [--field=<field>] [--fields=<fields>] [--format=<format>] [--status=<status>]
302305
~~~
303306

304307
Displays a list of the plugins installed on the site with activation
@@ -329,6 +332,17 @@ Use `--status=dropin` to list installed dropins (e.g. `object-cache.php`).
329332
- yaml
330333
---
331334

335+
[--status=<status>]
336+
Filter the output by plugin status.
337+
---
338+
options:
339+
- active
340+
- active-network
341+
- dropin
342+
- inactive
343+
- must-use
344+
---
345+
332346
**AVAILABLE FIELDS**
333347

334348
These fields will be displayed by default for each plugin:
@@ -592,7 +606,7 @@ wp plugin uninstall [<plugin>...] [--deactivate] [--skip-delete] [--all]
592606
Updates one or more plugins.
593607

594608
~~~
595-
wp plugin update [<plugin>...] [--all] [--exclude=<name>] [--minor] [--patch] [--format=<format>] [--version=<version>] [--dry-run]
609+
wp plugin update [<plugin>...] [--all] [--exclude=<name>] [--minor] [--patch] [--format=<format>] [--version=<version>] [--dry-run] [--insecure]
596610
~~~
597611

598612
**OPTIONS**
@@ -629,6 +643,9 @@ wp plugin update [<plugin>...] [--all] [--exclude=<name>] [--minor] [--patch] [-
629643
[--dry-run]
630644
Preview which plugins would be updated.
631645

646+
[--insecure]
647+
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
648+
632649
**EXAMPLES**
633650

634651
$ wp plugin update bbpress --version=dev
@@ -889,7 +906,7 @@ wp theme get <theme> [--field=<field>] [--fields=<fields>] [--format=<format>]
889906
Installs one or more themes.
890907

891908
~~~
892-
wp theme install <theme|zip|url>... [--version=<version>] [--force] [--activate]
909+
wp theme install <theme|zip|url>... [--version=<version>] [--force] [--activate] [--insecure]
893910
~~~
894911

895912
**OPTIONS**
@@ -908,6 +925,9 @@ wp theme install <theme|zip|url>... [--version=<version>] [--force] [--activate]
908925
[--activate]
909926
If set, the theme will be activated immediately after install.
910927

928+
[--insecure]
929+
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
930+
911931
**EXAMPLES**
912932

913933
# Install the latest version from wordpress.org and activate
@@ -957,7 +977,7 @@ Returns exit code 0 when installed, 1 when uninstalled.
957977
Gets a list of themes.
958978

959979
~~~
960-
wp theme list [--<field>=<value>] [--field=<field>] [--fields=<fields>] [--format=<format>]
980+
wp theme list [--<field>=<value>] [--field=<field>] [--fields=<fields>] [--format=<format>] [--status=<status>]
961981
~~~
962982

963983
**OPTIONS**
@@ -983,6 +1003,15 @@ wp theme list [--<field>=<value>] [--field=<field>] [--fields=<fields>] [--forma
9831003
- yaml
9841004
---
9851005

1006+
[--status=<status>]
1007+
Filter the output by theme status.
1008+
---
1009+
options:
1010+
- active
1011+
- parent
1012+
- inactive
1013+
---
1014+
9861015
**AVAILABLE FIELDS**
9871016

9881017
These fields will be displayed by default for each theme:
@@ -1283,7 +1312,7 @@ wp theme status [<theme>]
12831312
Updates one or more themes.
12841313

12851314
~~~
1286-
wp theme update [<theme>...] [--all] [--exclude=<theme-names>] [--format=<format>] [--version=<version>] [--dry-run]
1315+
wp theme update [<theme>...] [--all] [--exclude=<theme-names>] [--format=<format>] [--version=<version>] [--dry-run] [--insecure]
12871316
~~~
12881317

12891318
**OPTIONS**
@@ -1314,6 +1343,9 @@ wp theme update [<theme>...] [--all] [--exclude=<theme-names>] [--format=<format
13141343
[--dry-run]
13151344
Preview which themes would be updated.
13161345

1346+
[--insecure]
1347+
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
1348+
13171349
**EXAMPLES**
13181350

13191351
# Update multiple themes

0 commit comments

Comments
 (0)