wordpress_delete_page
Remove unwanted pages from your WordPress site by specifying the page ID and confirming deletion with the force parameter to manage site content effectively.
Instructions
Delete a page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"pageId": {
"type": "number"
}
},
"required": [
"pageId",
"force"
],
"type": "object"
}