mirror of
https://gh.wpcy.net/https://github.com/wp-cli/handbook.git
synced 2026-04-25 13:27:28 +08:00
36 lines
1.1 KiB
Markdown
36 lines
1.1 KiB
Markdown
# wp plugin
|
|
|
|
Manages plugins, including installs, activations, and updates.
|
|
|
|
See the WordPress [Plugin Handbook](https://developer.wordpress.org/plugins/) developer resource for more information on plugins.
|
|
|
|
### EXAMPLES
|
|
|
|
# Activate plugin
|
|
$ wp plugin activate hello
|
|
Plugin 'hello' activated.
|
|
Success: Activated 1 of 1 plugins.
|
|
|
|
# Deactivate plugin
|
|
$ wp plugin deactivate hello
|
|
Plugin 'hello' deactivated.
|
|
Success: Deactivated 1 of 1 plugins.
|
|
|
|
# Delete plugin
|
|
$ wp plugin delete hello
|
|
Deleted 'hello' plugin.
|
|
Success: Deleted 1 of 1 plugins.
|
|
|
|
# Install the latest version from wordpress.org and activate
|
|
$ wp plugin install bbpress --activate
|
|
Installing bbPress (2.5.9)
|
|
Downloading install package from https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip...
|
|
Using cached file '/home/vagrant/.wp-cli/cache/plugin/bbpress-2.5.9.zip'...
|
|
Unpacking the package...
|
|
Installing the plugin...
|
|
Plugin installed successfully.
|
|
Activating 'bbpress'...
|
|
Plugin 'bbpress' activated.
|
|
Success: Installed 1 of 1 plugins.
|
|
|
|
|