WordPress主题从技术上讲仅需要两个文件(主题中的index.php和block主题和style.css的index.html)
但它们通常由许多文件组成。这意味着他们可能很快变得混乱!本节将向您展示如何保持文件组织。
.
├── assets (dir)/
│ ├── css (dir)
│ ├── images (dir)
│ └── js (dir)
├── inc (dir)
├── template-parts (dir)/
│ ├── footer (dir)
│ ├── header (dir)
│ ├── navigation (dir)
│ ├── page (dir)
│ └── post (dir)
├── 404.php
├── archive.php
├── comments.php
├── footer.php
├── front-page.php
├── functions.php
├── header.php
├── index.php
├── page.php
├── README.txt
├── rtl.css
├── screenshot.png
├── search.php
├── searchform.php
├── sidebar.php
├── single.php
└── style.css
One reply on “WordPress 主题目录结构”
nico1988
nico