wordpress_delete_category
Remove a category from your WordPress site by specifying its ID and confirming deletion, helping you maintain organized content structure.
Instructions
Delete a category
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"categoryId": {
"type": "number"
},
"force": {
"type": "boolean"
}
},
"required": [
"categoryId",
"force"
],
"type": "object"
}