wordpress_create_child_theme
Create a child theme from a parent theme to safely customize WordPress designs without affecting core theme files during updates.
Instructions
Create a child theme from a parent theme
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parentTheme | Yes | ||
| childName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"childName": {
"type": "string"
},
"parentTheme": {
"type": "string"
}
},
"required": [
"parentTheme",
"childName"
],
"type": "object"
}