本文档详细介绍了 Nav_Menu_Item 修订(Revisions)的 REST API 端点,包括其数据模式、字段定义以及如何检索和创建修订记录。面向 WordPress 开发者,用于管理导航菜单项的版本控制。
GET /wp/v2/menu-items/<id>/autosaves
$ curl https://example.com/wp-json/wp/v2/menu-items/<id>/autosaves
POST /wp/v2/menu-items/<id>/autosaves
参数示例:parent=123, title="示例菜单项", type="post_type", status="draft" The schema defines all the fields that exist within a nav_menu_item revision record. Any response from these endpoints can be expected to contain the fields below unless the `_filter` query parameter is used or the schema field only appears in a specific context.
author
|
The ID for the author of the revision.
JSON data type: integer Context: |
date
|
The date the revision was published, in the site's timezone.
JSON data type: string, Context: |
date_gmt
|
The date the revision was published, as GMT.
JSON data type: string, Context: |
guid
|
GUID for the revision, as it exists in the database.
JSON data type: string Context: |
id
|
Unique identifier for the revision.
JSON data type: integer Context: |
modified
|
The date the revision was last modified, in the site's timezone.
JSON data type: string, Context: |
modified_gmt
|
The date the revision was last modified, as GMT.
JSON data type: string, Context: |
parent
|
The ID for the parent of the revision.
JSON data type: integer Context: |
slug
|
An alphanumeric identifier for the revision unique to its type.
JSON data type: string Context: |
title
|
The title for the object.
JSON data type: string or object Context: |
preview_link
|
Preview link for the post.
JSON data type: string, Read only Context: |
GET /wp/v2/menu-items/<id>/autosaves
Query this endpoint to retrieve a specific nav_menu_item revision record.
$ curl https://example.com/wp-json/wp/v2/menu-items/<id>/autosaves
parent
|
The ID for the parent of the autosave. |
context
|
Scope under which the request is made; determines fields present in response.
Default: One of: |
<a href="#schema-parent">parent</a>
|
The ID for the parent of the object. |
<a href="#schema-title">title</a>
|
The title for the object. |
<a href="#schema-type">type</a>
|
The family of objects originally represented, such as "post_type" or "taxonomy". One of: taxonomy, post_type, post_type_archive, custom
|
<a href="#schema-status">status</a>
|
A named status for the object. One of: publish, future, draft, pending, private
|
<a href="#schema-attr_title">attr_title</a>
|
Text for the title attribute of the link element for this menu item. |
<a href="#schema-classes">classes</a>
|
Class names for the link element of this menu item. |
<a href="#schema-description">description</a>
|
The description of this menu item. |
<a href="#schema-menu_order">menu_order</a>
|
The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. |
<a href="#schema-object">object</a>
|
The type of object originally represented, such as "category", "post", or "attachment". |
<a href="#schema-object_id">object_id</a>
|
The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. |
<a href="#schema-target">target</a>
|
The target attribute of the link element for this menu item. One of: _blank,
|
<a href="#schema-url">url</a>
|
The URL to which this menu item points. |
<a href="#schema-xfn">xfn</a>
|
The XFN relationship expressed in the link of this menu item. |
<a href="#schema-menus">menus</a>
|
The terms assigned to the object in the nav_menu taxonomy. |
<a href="#schema-meta">meta</a>
|
Meta fields. |
POST /wp/v2/menu-items/<id>/autosaves
GET /wp/v2/menu-items/<parent>/autosaves/<id>
Query this endpoint to retrieve a specific nav_menu_item revision record.
$ curl https://example.com/wp-json/wp/v2/menu-items/<parent>/autosaves/<id>
parent
|
The ID for the parent of the autosave. |
id
|
The ID for the autosave. |
context
|
Scope under which the request is made; determines fields present in response.
Default: One of: |