wordpress_update_page
Modify existing WordPress pages by updating content, metadata, and settings using page ID and update parameters.
Instructions
Update an existing page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pageId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"pageId",
"updates"
],
"type": "object"
}