wordpress_set_featured_image
Set a featured image for WordPress posts by linking media files to specific content, enhancing visual presentation and post organization.
Instructions
Set featured image (thumbnail) for a post
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ||
| mediaId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mediaId": {
"type": "number"
},
"postId": {
"type": "number"
}
},
"required": [
"postId",
"mediaId"
],
"type": "object"
}