文章类型
最后更新于:2021-11-29 21:33:35
Post Types
结构
结构定义了类型数据中存在的所有字段。除非使用“_filter”查询参数构造字段,否则来自这些端点的任何响应都可以包含以下字段。
capabilities object | 文章类型使用的所有能力。 只读 Context: edit |
description string | 文章类型的描述。 只读 Context: view , edit |
hierarchical boolean | 文章类型是否有子项。 只读 Context: view , edit |
viewable boolean | Whether or not the post type can be viewed. 只读 Context: edit |
labels object | Human-readable labels for the post type for various contexts. 只读 Context: edit |
name string | 文章类型的标题 只读 Context: view , edit , embed |
slug string | 文章类型的字母数字标识符。 只读 Context: view , edit , embed |
supports object | All features, supported by the post type. 只读 Context: edit |
taxonomies array | 文章类型的分类类型。 只读 Context: view , edit |
rest_base string | 文章类型的REST基本路线。 只读 Context: view , edit , embed |
检索类型
定义 & 请求示例
GET /gc/v2/types
查询此端点以检索特定类型数据。
$ curl https://example.com/gc-json/gc/v2/types
参数
context | 提交请求的数据结构;明确响应字段结构。 默认: view 唯一: view , embed , edit |
Retrieve a Type
定义 & 请求示例
GET /gc/v2/types/<type>
查询此端点以检索特定类型数据。
$ curl https://example.com/gc-json/gc/v2/types/<type>
参数
type | 文章类型的字母数字标识符。 |
context | 提交请求的数据结构;明确响应字段结构。 默认: view 唯一: view , embed , edit |