wordpress_create_page
Create new WordPress pages with hierarchical structure support using title and content parameters for organized website content management.
Instructions
Create a new WordPress page with hierarchy support
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"
}