Post Types Edit

Schema Schema

The schema defines all the fields that exist for a type object.

capabilities

object
All capabilities used by the post type.

Read only

Context: edit

description

string
A human-readable description of the post type.

Read only

Context: view, edit

hierarchical

boolean
Whether or not the post type should have children.

Read only

Context: view, edit

labels

object
Human-readable labels for the post type for various contexts.

Read only

Context: edit

name

string
The title for the post type.

Read only

Context: view, edit, embed

slug

string
An alphanumeric identifier for the post type.

Read only

Context: view, edit, embed

supports

object
All features, supported by the post type.

Read only

Context: edit

taxonomies

array
Taxonomies associated with post type.

Read only

Context: view, edit

rest_base

string
REST base route for the post type.

Read only

Context: view, edit, embed

Example Request Example Request

$ curl -X OPTIONS -i http://demo.wp-api.org/wp-json/wp/v2/types

Top ↑

List Types List Types

Top ↑

Arguments Arguments

context Scope under which the request is made; determines fields present in response.

Default: view

One of: view, embed, edit

Top ↑

Definition Definition

GET /wp/v2/types

Example Request Example Request

$ curl http://demo.wp-api.org/wp-json/wp/v2/types

Top ↑

Retrieve a Type Retrieve a Type

Top ↑

Arguments Arguments

type An alphanumeric identifier for the post type.
context Scope under which the request is made; determines fields present in response.

Default: view

One of: view, embed, edit

Top ↑

Definition Definition

GET /wp/v2/types/<type>

Example Request Example Request

$ curl http://demo.wp-api.org/wp-json/wp/v2/types/<type>