wordpress_delete_menu_item
Remove unwanted menu items from WordPress navigation menus by specifying the item ID and deletion force option.
Instructions
Delete a menu item
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"itemId": {
"type": "number"
}
},
"required": [
"itemId",
"force"
],
"type": "object"
}