最后更新时间为 2020年1月8日
WordPress主题文件放置在wp-content\themes目录下面。
一个文件夹代表一个主题,一个主题最少需要两个文件,分别是index.php和style.css
其中index.php是默认的入口文件,style.css是默认的样式文件,也是主题信息的配置文件,它的格式如下:
/*
Theme Name: 主题的名称
Theme URI: http://xxx.com //主题的网址
Author: 作者的名称 //作者的名称
Author URI: http://xxx.com //作者的网址
Description: 是一个使用的导航站点,可以管理自己的书签 //主题的简介
Version: 1.0 //主题的版本信息
*/
WordPress主题默认能够识别的文件名
名称 | 模板名称 | 详细说明 |
screenshot.png | 缩略图 | 显示在后台主题列表页的封面 |
taxonomy.php | 自定义分类法 | 通用自定义分类法的显示模板 |
taxonomy-XXX.php | 指定分类法 | |
author.php | 作者 | |
date.php | 日历 | |
attachment.php | 附件 | |
image.php | 图片 | |
archive.php | 归档 | |
404.php | 404 | |
category.php | 分类目录 | |
category-XXX.php | 指定分类 | |
archive-XXX.php | 指定归档 | |
search.php | 搜索结果 | |
tag.php | 标签 | |
single-XXX.php | 指定内容页 | |
home.php | 首页 | |
front-page.php | 绝对首页 | |
comments.php | 评论 | |
sidebar.php | 侧边栏 | |
single.php | 文章内容页 | |
singular.php | 页面文章合一 | |
page.php | 页面 | |
header.php | 公用头部 | |
footer.php | 公用底部 |