wordpress_update_term
Update taxonomy terms in WordPress by modifying their properties, names, descriptions, or metadata to maintain accurate site categorization and organization.
Instructions
Update a term in a taxonomy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taxonomy | Yes | ||
| termId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"taxonomy": {
"type": "string"
},
"termId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"taxonomy",
"termId",
"updates"
],
"type": "object"
}