forked from wp-cli/wp-cli.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparam-list.html
More file actions
195 lines (195 loc) · 3.88 KB
/
param-list.html
File metadata and controls
195 lines (195 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<tr>
<td>
Path to the WordPress files.
<br />
Default value: <code>null</code>
</td>
<td>
<code class="flag">--path=<path></code>
</td>
<td>
<code class="option">path: <path></code>
</td>
</tr>
<tr>
<td>
Perform operation against a remote server over SSH.
<br />
Default value: <code>null</code>
</td>
<td>
<code class="flag">--ssh=[<user>@]<host>[:<port>][<path>]</code>
</td>
<td>
<code class="option">ssh: [<user>@]<host>[:<port>][<path>]</code>
</td>
</tr>
<tr>
<td>
Perform operation against a remote WordPress install over HTTP.
<br />
Default value: <code>null</code>
</td>
<td>
<code class="flag">--http=<http></code>
</td>
<td>
<code class="option">http: <http></code>
</td>
</tr>
<tr>
<td>
Pretend request came from given URL. In multisite, this argument is how the target site is specified.
<br />
Default value: <code>null</code>
</td>
<td>
<code class="flag">--url=<url></code>
</td>
<td>
<code class="option">url: <url></code>
</td>
</tr>
<tr>
<td>
Set the WordPress user.
<br />
Default value: <code>null</code>
</td>
<td>
<code class="flag">--user=<id|login|email></code>
</td>
<td>
<code class="option">user: <id|login|email></code>
</td>
</tr>
<tr>
<td>
Skip loading all or some plugins. Note: mu-plugins are still loaded.
<br />
Default value: <code>""</code>
</td>
<td>
<code class="flag">--skip-plugins[=<plugin>]</code>
</td>
<td>
<code class="option">skip-plugins: <list></code>
</td>
</tr>
<tr>
<td>
Skip loading all or some themes.
<br />
Default value: <code>""</code>
</td>
<td>
<code class="flag">--skip-themes[=<theme>]</code>
</td>
<td>
<code class="option">skip-themes: <list></code>
</td>
</tr>
<tr>
<td>
Skip loading all installed packages.
<br />
Default value: <code>false</code>
</td>
<td>
<code class="flag">--skip-packages</code>
</td>
<td>
<code class="option">skip-packages: <bool></code>
</td>
</tr>
<tr>
<td>
Load PHP file before running the command (may be used more than once).
<br />
Default value: <code>[]</code>
</td>
<td>
<code class="flag">--require=<path></code>
</td>
<td>
<code class="option">require: <path></code>
</td>
</tr>
<tr>
<td>
(Sub)commands to disable.
<br />
Default value: <code>[]</code>
</td>
<td>
<em>Not available as a flag</em>
</td>
<td>
<code class="option">disabled_commands: <list></code>
</td>
</tr>
<tr>
<td>
Whether to colorize the output.
<br />
Default value: <code>"auto"</code>
</td>
<td>
<code class="flag">--[no-]color</code>
</td>
<td>
<code class="option">color: <bool></code>
</td>
</tr>
<tr>
<td>
Show all PHP errors; add verbosity to WP-CLI bootstrap.
<br />
Default value: <code>false</code>
</td>
<td>
<code class="flag">--debug[=<group>]</code>
</td>
<td>
<code class="option">debug: <group></code>
</td>
</tr>
<tr>
<td>
Prompt the user to enter values for all command arguments.
<br />
Default value: <code>false</code>
</td>
<td>
<code class="flag">--prompt</code>
</td>
<td>
<em>Not available as an option</em>
</td>
</tr>
<tr>
<td>
Suppress informational messages.
<br />
Default value: <code>false</code>
</td>
<td>
<code class="flag">--quiet</code>
</td>
<td>
<code class="option">quiet: <bool></code>
</td>
</tr>
<tr>
<td>
List of Apache Modules that are to be reported as loaded.
<br />
Default value: <code>[]</code>
</td>
<td>
<em>Not available as a flag</em>
</td>
<td>
<code class="option">apache_modules: <list></code>
</td>
</tr>