wordpress_read_plugin_file
Read specific files from WordPress plugins to examine code, check configurations, or troubleshoot plugin functionality directly from the file system.
Instructions
Read a specific file from a plugin
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plugin | Yes | ||
| filePath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"type": "string"
},
"plugin": {
"type": "string"
}
},
"required": [
"plugin",
"filePath"
],
"type": "object"
}