mirror of
https://gh.wpcy.net/https://github.com/wp-cli/handbook.git
synced 2026-05-03 02:36:00 +08:00
23 lines
574 B
Markdown
23 lines
574 B
Markdown
# wp plugin auto-updates
|
|
|
|
Manages plugin auto-updates.
|
|
|
|
### EXAMPLES
|
|
|
|
# Enable the auto-updates for a plugin
|
|
$ wp plugin auto-updates enable hello
|
|
Plugin auto-updates for 'hello' enabled.
|
|
Success: Enabled 1 of 1 plugin auto-updates.
|
|
|
|
# Disable the auto-updates for a plugin
|
|
$ wp plugin auto-updates disable hello
|
|
Plugin auto-updates for 'hello' disabled.
|
|
Success: Disabled 1 of 1 plugin auto-updates.
|
|
|
|
# Get the status of plugin auto-updates
|
|
$ wp plugin auto-updates status hello
|
|
Auto-updates for plugin 'hello' are disabled.
|
|
|
|
|
|
|
|
|