wordpress_create_category
Create a new WordPress category with hierarchical support to organize your site content effectively. Specify the category name to add structured taxonomy to your posts.
Instructions
Create a new category with hierarchical support
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}