文章状态
最后更新于:2021-11-29 22:05:32
Statuses
结构
结构定义了状态数据中存在的所有字段。除非使用“_filter”查询参数构造字段,否则来自这些端点的任何响应都可以包含以下字段。
name string | 文章状态的标题。 只读 Context: embed , view , edit |
private boolean | 文章状态为私有 只读 Context: edit |
protected boolean | 位置状态为受保护 只读 Context: edit |
public boolean | 文章状态为公开 只读 Context: view , edit |
queryable boolean | Whether posts with this status should be publicly-queryable. 只读 Context: view , edit |
show_in_list boolean | Whether to include posts in the edit listing for their post type. 只读 Context: edit |
slug string | 文章状态的字母数字标识符。 只读 Context: embed , view , edit |
date_floating boolean | Whether posts of this status may have floating published dates. 只读 Context: view , edit |
检索状态集合
定义 & 请求示例
GET /gc/v2/statuses
查询此端点以检索特定状态数据。
$ curl https://example.com/gc-json/gc/v2/statuses
参数
context | 提交请求的数据结构;明确响应字段结构。 默认: view 唯一: view , embed , edit |
检索单个状态
定义 & 请求示例
GET /gc/v2/statuses/<status>
查询此端点以检索特定状态数据。
$ curl https://example.com/gc-json/gc/v2/statuses/<status>
参数
status | 文章状态的字母数字标识符。 |
context | 提交请求的数据结构;明确响应字段结构。 默认: view 唯一: view , embed , edit |