wordpress_get_comment
Get a WordPress comment by ID.
wordpress_get_comment
Get comment details by ID.
Parameters
1 parameter, 1 required.
| Name | Type | Required | What it is |
|---|---|---|---|
id | number | yes | Comment ID |
Example call
The smallest valid call, with the required parameters only:
{
"name": "wordpress_get_comment",
"arguments": {
"id": 123
}
}
Response
{
"success": true,
"id": 9001,
"post_id": 101,
"author": "Jane",
"author_email": "jane@example.com",
"content": "Great post!"
}
What it changes
Nothing. It only reads, so there is nothing to approve and nothing to undo.
Availability
Works on any WordPress site, whichever page builder it uses. Available since Respira 1.0.0.
Example Prompts
- "Get comment 9001"
- "Show me the full content of comment 9001"
Related Tools
Was this page helpful?