Blame view
repos/robbyrussell/oh-my-zsh/plugins/wp-cli/README.md
2.44 KB
|
093a6c34b
|
1 2 3 4 5 |
# WP-CLI **Maintainer:** [joshmedeski](https://github.com/joshmedeski) WordPress Command Line Interface (http://wp-cli.org/) |
|
d9bebbb3c
|
6 7 8 |
WP-CLI is a set of command-line tools for managing WordPress installations. You can update plugins, set up multisite installs and much more, without using a web browser. This plugin adds [tab completion](http://wp-cli.org/#complete) for `wp-cli` as well as several aliases. |
|
093a6c34b
|
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 |
## List of Aliases ### Core - wpcc='wp core config' - wpcd='wp core download' - wpci='wp core install' - wpcii='wp core is-installed' - wpcmc='wp core multisite-convert' - wpcmi='wp core multisite-install' - wpcu='wp core update' - wpcudb='wp core update-db' - wpcvc='wp core verify-checksums' ### Cron - wpcre='wp cron event' - wpcrs='wp cron schedule' - wpcrt='wp cron test' ### Menu - wpmc='wp menu create' - wpmd='wp menu delete' - wpmi='wp menu item' - wpml='wp menu list' - wpmlo='wp menu location' ### Plugin - wppa='activate' - wppda='deactivate' - wppd='delete' - wppg='get' - wppi='install' - wppis='is-installed' - wppl='list' - wppp='path' - wpps='search' - wppst='status' - wppt='toggle' |
|
f4c442e7d
|
47 |
- wppun='uninstall' |
|
093a6c34b
|
48 49 50 51 52 53 54 55 56 57 58 |
- wppu='update' ### Post - wppoc='wp post create' - wppod='wp post delete' - wppoe='wp post edit' - wppogen='wp post generate' - wppog='wp post get' - wppol='wp post list' - wppom='wp post meta' - wppou='wp post update' |
|
f4c442e7d
|
59 |
- wppourl='wp post url' |
|
093a6c34b
|
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 |
### Sidebar - wpsbl='wp sidebar list' ### Theme - wpta='wp theme activate' - wptd='wp theme delete' - wptdis='wp theme disable' - wpte='wp theme enable' - wptg='wp theme get' - wpti='wp theme install' - wptis='wp theme is-installed' - wptl='wp theme list' - wptm='wp theme mod' - wptp='wp theme path' - wpts='wp theme search' - wptst='wp theme status' - wptu='wp theme updatet' ### User - wpuac='wp user add-cap' - wpuar='wp user add-role' - wpuc='wp user create' - wpud='wp user delete' - wpugen='wp user generate' - wpug='wp user get' - wpui='wp user import-csv' - wpul='wp user list' - wpulc='wp user list-caps' - wpum='wp user meta' - wpurc='wp user remove-cap' - wpurr='wp user remove-role' - wpusr='wp user set-role' - wpuu='wp user update' ### Widget - wpwa='wp widget add' - wpwda='wp widget deactivate' - wpwd='wp widget delete' - wpwl='wp widget list' - wpwm='wp widget move' - wpwu='wp widget update' The entire list of wp-cli commands can be found here: http://wp-cli.org/commands/ I only included the commands that are most used. Please feel free to contribute to this project if you want more commands. |