| layout | default |
|---|---|
| title | wp post-type |
| display_global_parameters | true |
Commands » post-type
wp post-type - Manage post types.
Quick links: Github issues
# Get 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 | |
+---------------+--------+
| Name | Description |
|---|---|
| get | Get a post type |
| list | List post types. |