スキーマ

スキーマはmetaオブジェクトに存在するすべてのフィールドを定義しています。

id
integer

Unique identifier for the object.

読み取り専用

コンテキスト: edit

key
string

The key for the custom field.

コンテキスト: edit

value
string

The value of the custom field.

コンテキスト: edit

Example Request

$ curl -X OPTIONS -i http://demo.wp-api.org/wp-json/wp/v2/posts/<parent_id>/meta

Post Meta一覧

引数

context

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

初期値: edit

次のいずれか: edit

定義

GET /wp/v2/posts/<parent_id>/meta

リクエスト例

$ curl http://demo.wp-api.org/wp-json/wp/v2/posts/<parent_id>/meta

Post Metaを取得する

引数

context

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

初期値: edit

次のいずれか: edit

定義

GET /wp/v2/posts/<parent_id>/meta/<id>

リクエスト例

$ curl http://demo.wp-api.org/wp-json/wp/v2/posts/<parent_id>/meta/<id>

Post Metaを作成

引数

key

必須: true

value

定義

POST /wp/v2/posts/<parent_id>/meta

Post Metaを更新する

引数

key
value

定義

POST /wp/v2/posts/<parent_id>/meta/<id>

リクエスト例

Post Metaを削除

引数

force

Required to be true, as resource does not support trashing.

定義

DELETE /wp/v2/posts/<parent_id>/meta/<id>

リクエスト例

$ curl -X DELETE http://demo.wp-api.org/wp-json/wp/v2/posts/<parent_id>/meta/<id>