Wp cron schedule list (WP-CLI)

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
$ wp help cron schedule list

NAME

  wp cron schedule list

DESCRIPTION

  List available cron schedules.

SYNOPSIS

  wp cron schedule list [--fields=<fields>] [--field=<field>] [--format=<format>]

OPTIONS

  [--fields=<fields>]
    Limit the output to specific object fields.

  [--field=<field>]
    Prints the value of a single field for each schedule.

  [--format=<format>]
    Render output in a particular format.
    ---
    default: table
    options:
      - table
      - csv
      - ids
      - json
      - yaml
    ---

AVAILABLE FIELDS

  These fields will be displayed by default for each cron schedule:

  * name
  * display
  * interval

  There are no additional fields.

EXAMPLES

    # List available cron schedules
    $ wp cron schedule list
    +------------+-------------+----------+
    | name       | display     | interval |
    +------------+-------------+----------+
    | hourly     | Once Hourly | 3600     |
    | twicedaily | Twice Daily | 43200    |
    | daily      | Once Daily  | 86400    |
    +------------+-------------+----------+

    # List id of available cron schedule
    $ wp cron schedule list --fields=name --format=ids
    hourly twicedaily daily