Wp post-type (WP-CLI)

Uit De Vliegende Brigade
(Doorverwezen vanaf Wp post-type(WP-CLI))
Naar navigatie springen Naar zoeken springen
$ wp help post-type

NAME

  wp post-type

DESCRIPTION

  Retrieves details on the site's registered post types.

SYNOPSIS

  wp post-type <command>

SUBCOMMANDS

  get       Gets details about a registered post type.
  list      Lists registered post types.

  Get information on WordPress' built-in and the site's [custom post types][1].

  ---
  [1] https://developer.wordpress.org/plugins/post-types/

EXAMPLES

    # Get details about a post type
    $ wp post-type get page --fields=name,label,hierarchical --format=json
    {"name":"page","label":"Pages","hierarchical":true}

    # List post types with 'post' capability type
    $ wp post-type list --capability_type=post --fields=name,public
    +---------------+--------+
    | name          | public |
    +---------------+--------+
    | post          | 1      |
    | attachment    | 1      |
    | revision      |        |
    | nav_menu_item |        |
    +---------------+--------+