スキーマ
スキーマはmetaオブジェクトに存在するすべてのフィールドを定義しています。
id integer |
Unique identifier for the object. 読み取り専用 コンテキスト: |
key string |
The key for the custom field. コンテキスト: |
value string |
The value of the custom field. コンテキスト: |
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.
初期値: 次のいずれか: |
定義
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.
初期値: 次のいずれか: |
定義
GET /wp/v2/posts/<parent_id>/meta/<id>
リクエスト例
$ curl http://demo.wp-api.org/wp-json/wp/v2/posts/<parent_id>/meta/<id>
定義
POST /wp/v2/posts/<parent_id>/meta
定義
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>