my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.5 KiB

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