wordpress_update_category
Modify WordPress category details including name, description, and parent category to organize your site content effectively.
Instructions
Update category name, description, or parent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"categoryId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"categoryId",
"updates"
],
"type": "object"
}