wp_get_post
Retrieve specific WordPress post data by ID from local development sites for content analysis and development workflows.
Instructions
Get a specific WordPress post by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | Post ID |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "Post ID",
"type": "number"
}
},
"required": [
"post_id"
],
"type": "object"
}