wordpress_update_reusable_block
Modify reusable WordPress blocks by updating their content, settings, or properties to maintain consistency across multiple pages and posts.
Instructions
Update a reusable block
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blockId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"blockId": {
"type": "number"
},
"updates": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"blockId",
"updates"
],
"type": "object"
}