wordpress_delete_comment
Remove unwanted comments from WordPress sites by specifying the comment ID and using force deletion when necessary to manage site content effectively.
Instructions
Delete a comment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| commentId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"commentId": {
"type": "number"
},
"force": {
"type": "boolean"
}
},
"required": [
"commentId",
"force"
],
"type": "object"
}