スキーマ
スキーマはpageオブジェクトに存在するすべてのフィールドを定義しています。
date string, datetime (ISO8601) |
The date the object was published, in the site's timezone. コンテキスト: |
date_gmt string, datetime (ISO8601) |
The date the object was published, as GMT. コンテキスト: |
guid object |
The globally unique identifier for the object. 読み取り専用 コンテキスト: |
id integer |
Unique identifier for the object. 読み取り専用 コンテキスト: |
link string, uri |
URL to the object. 読み取り専用 コンテキスト: |
modified string, datetime (ISO8601) |
The date the object was last modified, in the site's timezone. 読み取り専用 コンテキスト: |
modified_gmt string, datetime (ISO8601) |
The date the object was last modified, as GMT. 読み取り専用 コンテキスト: |
slug string |
An alphanumeric identifier for the object unique to its type. コンテキスト: |
status string |
A named status for the object. コンテキスト: 次のいずれか: |
type string |
Type of Post for the object. 読み取り専用 コンテキスト: |
password string |
A password to protect access to the content and excerpt. コンテキスト: |
permalink_template string |
Permalink template for the object. 読み取り専用 コンテキスト: |
generated_slug string |
Slug automatically generated from the object title. 読み取り専用 コンテキスト: |
parent integer |
The ID for the parent of the object. コンテキスト: |
title object |
The title for the object. コンテキスト: |
content object |
The content for the object. コンテキスト: |
author integer |
The ID for the author of the object. コンテキスト: |
excerpt object |
The excerpt for the object. コンテキスト: |
featured_media integer |
The ID of the featured media for the object. コンテキスト: |
comment_status string |
Whether or not comments are open on the object. コンテキスト: 次のいずれか: |
ping_status string |
Whether or not the object can be pinged. コンテキスト: 次のいずれか: |
menu_order integer |
The order of the object in relation to other object of its type. コンテキスト: |
meta object |
Meta fields. コンテキスト: |
template string |
The theme file to use to display the object. コンテキスト: |
Example Request
$ curl -X OPTIONS -i http://demo.wp-api.org/wp-json/wp/v2/pages
Page一覧
引数
context |
Scope under which the request is made; determines fields present in response.
初期値: 次のいずれか: |
page |
Current page of the collection.
初期値: |
per_page |
Maximum number of items to be returned in result set.
初期値: |
search |
Limit results to those matching a string. |
after |
Limit response to posts published after a given ISO8601 compliant date. |
author |
Limit result set to posts assigned to specific authors.
初期値: |
author_exclude |
Ensure result set excludes posts assigned to specific authors.
初期値: |
before |
Limit response to posts published before a given ISO8601 compliant date. |
exclude |
Ensure result set excludes specific IDs.
初期値: |
include |
Limit result set to specific IDs.
初期値: |
menu_order |
Limit result set to posts with a specific menu_order value. |
offset |
Offset the result set by a specific number of items. |
order |
Order sort attribute ascending or descending.
初期値: 次のいずれか: |
orderby |
Sort collection by object attribute.
初期値: 次のいずれか: |
parent |
Limit result set to items with particular parent IDs.
初期値: |
parent_exclude |
Limit result set to all items except those of a particular parent ID.
初期値: |
slug |
Limit result set to posts with one or more specific slugs. |
status |
Limit result set to posts assigned one or more statuses.
初期値: |
定義
GET /wp/v2/pages
リクエスト例
$ curl http://demo.wp-api.org/wp-json/wp/v2/pages
Pageを取得する
引数
id |
Unique identifier for the object. |
context |
Scope under which the request is made; determines fields present in response.
初期値: 次のいずれか: |
password |
The password for the post if it is password protected. |
定義
GET /wp/v2/pages/<id>
リクエスト例
$ curl http://demo.wp-api.org/wp-json/wp/v2/pages/<id>
Pageを作成
引数
date |
The date the object was published, in the site's timezone. |
date_gmt |
The date the object was published, as GMT. |
slug |
An alphanumeric identifier for the object unique to its type. |
status |
A named status for the object. 次のいずれか: |
password |
A password to protect access to the content and excerpt. |
parent |
The ID for the parent of the object. |
title |
The title for the object. |
content |
The content for the object. |
author |
The ID for the author of the object. |
excerpt |
The excerpt for the object. |
featured_media |
The ID of the featured media for the object. |
comment_status |
Whether or not comments are open on the object. 次のいずれか: |
ping_status |
Whether or not the object can be pinged. 次のいずれか: |
menu_order |
The order of the object in relation to other object of its type. |
meta |
Meta fields. |
template |
The theme file to use to display the object. |
定義
POST /wp/v2/pages
Pageを更新する
引数
id |
Unique identifier for the object. |
date |
The date the object was published, in the site's timezone. |
date_gmt |
The date the object was published, as GMT. |
slug |
An alphanumeric identifier for the object unique to its type. |
status |
A named status for the object. 次のいずれか: |
password |
A password to protect access to the content and excerpt. |
parent |
The ID for the parent of the object. |
title |
The title for the object. |
content |
The content for the object. |
author |
The ID for the author of the object. |
excerpt |
The excerpt for the object. |
featured_media |
The ID of the featured media for the object. |
comment_status |
Whether or not comments are open on the object. 次のいずれか: |
ping_status |
Whether or not the object can be pinged. 次のいずれか: |
menu_order |
The order of the object in relation to other object of its type. |
meta |
Meta fields. |
template |
The theme file to use to display the object. |
定義
POST /wp/v2/pages/<id>
リクエスト例
Pageを削除
引数
id |
Unique identifier for the object. |
force |
Whether to bypass trash and force deletion. |
定義
DELETE /wp/v2/pages/<id>
リクエスト例
$ curl -X DELETE http://demo.wp-api.org/wp-json/wp/v2/pages/<id>