fc_bulk_create_posts
Create multiple WordPress community posts simultaneously to manage AI-generated content campaigns with scheduled publishing options.
Instructions
Create multiple posts at once (useful for AI-generated content campaigns)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| posts | Yes | Array of post objects to create |
Input Schema (JSON Schema)
{
"properties": {
"posts": {
"description": "Array of post objects to create",
"items": {
"properties": {
"message": {
"type": "string"
},
"scheduled_at": {
"description": "Schedule time (YYYY-MM-DD HH:MM:SS)",
"type": "string"
},
"space_id": {
"type": "number"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
},
"user_id": {
"type": "number"
}
},
"required": [
"space_id",
"user_id",
"message"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"posts"
],
"type": "object"
}