wordpress_write_plugin_file
Create or update plugin files in WordPress with automatic backup protection for safe development and customization.
Instructions
Write or modify a file in a plugin (automatically creates backup)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plugin | Yes | ||
| filePath | Yes | ||
| content | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"filePath": {
"type": "string"
},
"plugin": {
"type": "string"
}
},
"required": [
"plugin",
"filePath",
"content"
],
"type": "object"
}