wordpress_delete_term
Remove terms from WordPress taxonomies like categories and tags to clean up your site structure and manage content organization.
Instructions
Delete a term from a taxonomy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taxonomy | Yes | ||
| termId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"taxonomy": {
"type": "string"
},
"termId": {
"type": "number"
}
},
"required": [
"taxonomy",
"termId",
"force"
],
"type": "object"
}