wordpress_bulk_delete_posts
Remove multiple WordPress posts simultaneously by specifying post IDs, enabling efficient content cleanup and management operations.
Instructions
Delete multiple posts in one operation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postIds | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"postIds": {
"type": "array"
}
},
"required": [
"postIds",
"force"
],
"type": "object"
}