fc_create_term
Create new terms and tags for organizing content in the FluentCommunity WordPress plugin. Define term title, slug, and description to categorize community posts, spaces, and discussions.
Instructions
Create a new term/tag
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Term title | |
| slug | No | Term slug | |
| description | No | Term description |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Term description",
"type": "string"
},
"slug": {
"description": "Term slug",
"type": "string"
},
"title": {
"description": "Term title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}