]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/wp-cli/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / wp-cli / README.md
1 # WP-CLI
2
3 The [WordPress CLI](https://wp-cli.org/) is a command-line tool for managing WordPress installations. You can update plugins, set up multisite installs and much more, without using a web browser.
4
5 This plugin adds [tab completion](https://wp-cli.org/#tab-completions) for `wp-cli` as well as several aliases for commonly used commands.
6
7 To use it, add `wp-cli` to the plugins array in your zshrc file:
8
9 ```zsh
10 plugins=(... wp-cli)
11 ```
12
13 **Maintainer:** [joshmedeski](https://github.com/joshmedeski)
14
15 ## Aliases
16
17 The entire list of `wp-cli` commands can be found here: https://developer.wordpress.org/cli/commands/
18
19 | Alias     | Command                     |
20 |-----------|-----------------------------|
21 | **Core**                                |
22 | `wpcc`    | `wp core config`            |
23 | `wpcd`    | `wp core download`          |
24 | `wpci`    | `wp core install`           |
25 | `wpcii`   | `wp core is-installed`      |
26 | `wpcmc`   | `wp core multisite-convert` |
27 | `wpcmi`   | `wp core multisite-install` |
28 | `wpcu`    | `wp core update`            |
29 | `wpcudb`  | `wp core update-db`         |
30 | `wpcvc`   | `wp core verify-checksums`  |
31 | **Cron**                                |
32 | `wpcre`   | `wp cron event`             |
33 | `wpcrs`   | `wp cron schedule`          |
34 | `wpcrt`   | `wp cron test`              |
35 | **Database**                            |
36 | `wpdbe`   | `wp db export`              |
37 | `wpdbi`   | `wp db import`              |
38 | `wpdbcr`  | `wp db create`              |
39 | `wpdbs`   | `wp db search`              |
40 | `wpdbch`  | `wp db check`               |
41 | `wpdbr`   | `wp db repair`              |
42 | **Menu**                                |
43 | `wpmc`    | `wp menu create`            |
44 | `wpmd`    | `wp menu delete`            |
45 | `wpmi`    | `wp menu item`              |
46 | `wpml`    | `wp menu list`              |
47 | `wpmlo`   | `wp menu location`          |
48 | **Plugin**                              |
49 | `wppa`    | `wp plugin activate`        |
50 | `wppda`   | `wp plugin deactivate`      |
51 | `wppd`    | `wp plugin delete`          |
52 | `wppg`    | `wp plugin get`             |
53 | `wppi`    | `wp plugin install`         |
54 | `wppis`   | `wp plugin is-installed`    |
55 | `wppl`    | `wp plugin list`            |
56 | `wppp`    | `wp plugin path`            |
57 | `wpps`    | `wp plugin search`          |
58 | `wppst`   | `wp plugin status`          |
59 | `wppt`    | `wp plugin toggle`          |
60 | `wppun`   | `wp plugin uninstall`       |
61 | `wppu`    | `wp plugin update`          |
62 | **Post**                                |
63 | `wppoc`   | `wp post create`            |
64 | `wppod`   | `wp post delete`            |
65 | `wppoe`   | `wp post edit`              |
66 | `wppogen` | `wp post generate`          |
67 | `wppog`   | `wp post get`               |
68 | `wppol`   | `wp post list`              |
69 | `wppom`   | `wp post meta`              |
70 | `wppou`   | `wp post update`            |
71 | `wppourl` | `wp post url`               |
72 | **Sidebar**                             |
73 | `wpsbl`   | `wp sidebar list`           |
74 | **Theme**                               |
75 | `wpta`    | `wp theme activate`         |
76 | `wptd`    | `wp theme delete`           |
77 | `wptdis`  | `wp theme disable`          |
78 | `wpte`    | `wp theme enable`           |
79 | `wptg`    | `wp theme get`              |
80 | `wpti`    | `wp theme install`          |
81 | `wptis`   | `wp theme is-installed`     |
82 | `wptl`    | `wp theme list`             |
83 | `wptm`    | `wp theme mod`              |
84 | `wptp`    | `wp theme path`             |
85 | `wpts`    | `wp theme search`           |
86 | `wptst`   | `wp theme status`           |
87 | `wptu`    | `wp theme update`           |
88 | **User**                                |
89 | `wpuac`   | `wp user add-cap`           |
90 | `wpuar`   | `wp user add-role`          |
91 | `wpuc`    | `wp user create`            |
92 | `wpud`    | `wp user delete`            |
93 | `wpugen`  | `wp user generate`          |
94 | `wpug`    | `wp user get`               |
95 | `wpui`    | `wp user import-csv`        |
96 | `wpul`    | `wp user list`              |
97 | `wpulc`   | `wp user list-caps`         |
98 | `wpum`    | `wp user meta`              |
99 | `wpurc`   | `wp user remove-cap`        |
100 | `wpurr`   | `wp user remove-role`       |
101 | `wpusr`   | `wp user set-role`          |
102 | `wpuu`    | `wp user update`            |
103 | **Widget**                              |
104 | `wpwa`    | `wp widget add`             |
105 | `wpwda`   | `wp widget deactivate`      |
106 | `wpwd`    | `wp widget delete`          |
107 | `wpwl`    | `wp widget list`            |
108 | `wpwm`    | `wp widget move`            |
109 | `wpwu`    | `wp widget update`          |