wordpress_read_theme_file
Read specific files from WordPress themes to inspect theme structure, review code, or analyze template files for customization and troubleshooting purposes.
Instructions
Read a specific file from a theme
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| theme | Yes | ||
| filePath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"type": "string"
},
"theme": {
"type": "string"
}
},
"required": [
"theme",
"filePath"
],
"type": "object"
}