Creé un tema y agregué archivos de plantilla. Sin embargo, esas plantillas no están visibles en la página para usarlas como plantillas. Quiero usar home.html como mi página de inicio, pero no hay ninguna opción para seleccionarlo.
{"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"settings": {
"appearanceTools": true,
"layout": {
"contentSize": "620px",
"wideSize": "1200px"
},
"spacing": {
"units": ["px", "em", "rem", "vh", "vw", "%"]
},
"typography": {}
},
"styles": {},
"customTemplates": [
{
"name": "home",
"title": "Home",
"postTypes": ["page"]
},
{
"name": "archive",
"title": "Archive",
"postTypes": ["page", "post"]
},
{
"name": "blank",
"title": "Blank",
"postTypes": ["page", "post"]
}
]
}
tree 17:54:26
.
├── parts
│ ├── comments.html
│ ├── footer.html
│ ├── header.html
│ └── sidebar.html
├── patterns
│ └── header-default.php
├── style.css
├── templates
│ ├── 404.html
│ ├── archive.html
│ ├── blank.html
│ ├── home.html
│ ├── index.html
│ ├── no-title.html
│ ├── page.html
│ ├── search.html
│ └── single.html
└── theme.json