Wp plugin delete (WP-CLI): verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
(Nieuwe pagina aangemaakt met 'E.g.: wp plugin delete hello wp plugin delete contact-form-7 * By itself, WP-CLI can delete files. It probably depends on the overall right configuration if thi...')
 
Regel 1: Regel 1:
 +
<pre>
 +
$ wp help plugin delete
 +
 +
NAME
 +
 +
  wp plugin delete
 +
 +
DESCRIPTION
 +
 +
  Deletes plugin files without deactivating or uninstalling.
 +
 +
SYNOPSIS
 +
 +
  wp plugin delete [<plugin>...] [--all]
 +
 +
OPTIONS
 +
 +
  [<plugin>...]
 +
    One or more plugins to delete.
 +
 +
  [--all]
 +
    If set, all plugins will be deleted.
 +
 +
EXAMPLES
 +
 +
    # Delete plugin
 +
    $ wp plugin delete hello
 +
    Deleted 'hello' plugin.
 +
    Success: Deleted 1 of 1 plugins.
 +
 +
    # Delete inactive plugins
 +
    $ wp plugin delete $(wp plugin list --status=inactive --field=name)
 +
    Deleted 'tinymce-templates' plugin.
 +
    Success: Deleted 1 of 1 plugins.
 +
</pre>
 +
 
E.g.:
 
E.g.:
  
Regel 4: Regel 40:
 
  wp plugin delete contact-form-7
 
  wp plugin delete contact-form-7
  
* By itself, WP-CLI can delete files. It probably depends on the overall right configuration if this works in any specific situation
+
Note:
 +
 
 
* Plugins don't need to be stopped before deletion
 
* Plugins don't need to be stopped before deletion
 
* ''Must-use (mu) plugins'' cannot be stopped. You can only stop them through deleting them.
 
* ''Must-use (mu) plugins'' cannot be stopped. You can only stop them through deleting them.
  
== Sources ==
+
== See also ==
  
 
* [[Hoofdpagina#WP-CLI | Home page » WP-CLI]]
 
* [[Hoofdpagina#WP-CLI | Home page » WP-CLI]]
 
* [[Wp plugin (WP-CLI) | wp plugin]]
 
* [[Wp plugin (WP-CLI) | wp plugin]]
 +
* [[Wp plugin uninstall (WP-CLI) | wp plugin uninstall]]

Versie van 5 okt 2022 20:08

$ wp help plugin delete

NAME

  wp plugin delete

DESCRIPTION

  Deletes plugin files without deactivating or uninstalling.

SYNOPSIS

  wp plugin delete [<plugin>...] [--all]

OPTIONS

  [<plugin>...]
    One or more plugins to delete.

  [--all]
    If set, all plugins will be deleted.

EXAMPLES

    # Delete plugin
    $ wp plugin delete hello
    Deleted 'hello' plugin.
    Success: Deleted 1 of 1 plugins.

    # Delete inactive plugins
    $ wp plugin delete $(wp plugin list --status=inactive --field=name)
    Deleted 'tinymce-templates' plugin.
    Success: Deleted 1 of 1 plugins.

E.g.:

wp plugin delete hello
wp plugin delete contact-form-7

Note:

  • Plugins don't need to be stopped before deletion
  • Must-use (mu) plugins cannot be stopped. You can only stop them through deleting them.

See also