wordpress_create_term
Create new taxonomy terms in WordPress to organize and categorize content effectively within your site structure.
Instructions
Create a new term in a taxonomy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taxonomy | Yes | ||
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"taxonomy": {
"type": "string"
}
},
"required": [
"taxonomy",
"name"
],
"type": "object"
}