Wp option update (WP-CLI): verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
(Nieuwe pagina aangemaakt met '== wp option update == Updates an option value. Voorbeelden: <pre> wp option update blogname "$site_title" # Site title wp option update blogdescription "$slog...')
 
Regel 1: Regel 1:
== wp option update ==
+
<code>wp option update</code>: Update an option value.
  
Updates an option value. Voorbeelden:
+
<pre>
 +
$ wp help option update
 +
 
 +
NAME
 +
 
 +
  wp option update
 +
 
 +
DESCRIPTION
 +
 
 +
  Updates an option value.
 +
 
 +
SYNOPSIS
 +
 
 +
  wp option update <key> [<value>] [--autoload=<autoload>] [--format=<format>]
 +
 
 +
ALIAS
 +
 
 +
  set
 +
 
 +
OPTIONS
 +
 
 +
  <key>
 +
    The name of the option to update.
 +
 
 +
  [<value>]
 +
    The new value. If ommited, the value is read from STDIN.
 +
 
 +
  [--autoload=<autoload>]
 +
    Requires WP 4.2. Should this option be automatically loaded.
 +
    ---
 +
    options:
 +
      - 'yes'
 +
      - 'no'
 +
    ---
 +
 
 +
  [--format=<format>]
 +
    The serialization format for the value.
 +
    ---
 +
    default: plaintext
 +
    options:
 +
      - plaintext
 +
      - json
 +
    ---
 +
</pre>
 +
 
 +
== Voorbeelden ==
  
 
<pre>
 
<pre>

Versie van 29 jul 2022 08:27

wp option update: Update an option value.

$ wp help option update

NAME

  wp option update

DESCRIPTION

  Updates an option value.

SYNOPSIS

  wp option update <key> [<value>] [--autoload=<autoload>] [--format=<format>]

ALIAS

  set

OPTIONS

  <key>
    The name of the option to update.

  [<value>]
    The new value. If ommited, the value is read from STDIN.

  [--autoload=<autoload>]
    Requires WP 4.2. Should this option be automatically loaded.
    ---
    options:
      - 'yes'
      - 'no'
    ---

  [--format=<format>]
    The serialization format for the value.
    ---
    default: plaintext
    options:
      - plaintext
      - json
    ---

Voorbeelden

wp option update blogname "$site_title"    # Site title
wp option update blogdescription "$slogan" # Tagline

Zie ook