wordpress_update_menu_item
Modify WordPress menu items by updating titles, URLs, order, and other attributes to maintain current navigation and site structure.
Instructions
Update a menu item (title, URL, order, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"itemId",
"updates"
],
"type": "object"
}