外贸营销
wordpress分类法存档模版继承规则和自定义方法
分类法存档模版
存档页,也叫列表页,是一系列文章内容的列表,和内容页模版一样,存档页模版的调用规则也是从具体到通用。
模版名称中的 {} 包含的部分是存档页对应的数据:
- {taxonomy} 是自定义文章类型名称,如 taxonomy-product_cat.php 中的 product_cat 对应的就是模版名称中的 {taxonomy}
- {term} 是自定义文章类型项目的别名,如 taxonomy-product_cat-cat1.php 中的 cat1 对应的就是模版名称中的 {term}
自定义分类法存档模版优先级
- taxonomy-{taxonomy}-{term}.php
- taxonomy-{taxonomy}.php
- taxonomy.php
- archive.php
- index.php
分类目录存档模版
分类目录是 WordPress 内置的分类方法,其模版优先级和自定义分类法模版的优先级类型,只不过少了前面的 taoxnomy。
- category-{slug}.php
- category-{id}.php
- category.php
- archive.php
- index.php
标签存档模版
标签也是 WordPress 内置的分类方法,其模版优先级和自定义分类法模版的优先级类型,只不过少了前面的 taoxnomy。
- tag-{slug}.php
- tag-{id}.php
- archive.php
- index.php
标签