wordpress_create_reusable_block
Create reusable content blocks in WordPress to save time by using the same content across multiple posts and pages without duplication.
Instructions
Create a reusable block
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| content | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}