fc_bulk_update_posts
Update multiple posts simultaneously to modify status, privacy settings, or post type across your FluentCommunity WordPress site in one operation.
Instructions
Update multiple posts at once
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_ids | Yes | Array of post IDs to update | |
| updates | Yes | Fields to update on all posts |
Input Schema (JSON Schema)
{
"properties": {
"post_ids": {
"description": "Array of post IDs to update",
"items": {
"type": "number"
},
"type": "array"
},
"updates": {
"description": "Fields to update on all posts",
"properties": {
"privacy": {
"type": "string"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"post_ids",
"updates"
],
"type": "object"
}