wordpress_delete_file
Remove files from WordPress sites with optional backup creation to prevent data loss during deletion operations.
Instructions
Delete file with optional backup
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| createBackup | Yes |
Input Schema (JSON Schema)
{
"properties": {
"createBackup": {
"type": "boolean"
},
"path": {
"type": "string"
}
},
"required": [
"path",
"createBackup"
],
"type": "object"
}